/* =============================================
   STS 2026 — style.css
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --blue:       #046bd2;
  --blue-dark:  #045cb4;
  --navy:       #1e293b;
  --slate:      #334155;
  --white:      #ffffff;
  --light-bg:   #F0F5FA;
  --border:     #D1D5DB;
  --light-blue: #7ec8e3;
  --green:      #14B57B;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }
p { text-align: justify; hyphens: auto;}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.3;
}

/* ---------- Page shell ---------- */
#page { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex-grow: 1; }

/* ---------- Shared utilities ---------- */
.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #0fa068;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  height: 80px !important;
  background: rgba(0,0,0,0.25) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: none !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.nav-scrolled {
  background: #ffffff !important;
  border-bottom: 1px solid #D1D5DB !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 0 -5px ;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* .site-logo img { height: 50px; width: auto; } */
.site-logo img { height: auto; width: auto; }

/* Desktop nav */

/* ---- Logo pair ---- */
.logo-pair {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  width: 100px;
}
.logo-pair a { display: flex; align-items: center; flex-shrink: 0; }
.logo-pair img { height: 42px; width: auto; display: block; max-width: none; flex-shrink: 0; object-fit: contain; }
.logo-pair a:last-child img { height: 52px; }
.logo-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.5) !important;
  margin: 0 10px;
  flex-shrink: 0;
  display: block !important;
  transition: background 0.35s ease;
}
.site-header.nav-scrolled .logo-divider { background: #D1D5DB !important; }

/* ---- Nav CTA wrap ---- */
.nav-cta-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 150px;
  padding-right: 2px ;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.main-nav a {
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 9px !important;
  border-radius: 4px;
  color: #ffffff !important;
  white-space: nowrap !important;
  transition: color 0.25s ease, background 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: #ffffff !important; font-weight: 600; }

.site-header.nav-scrolled .main-nav > a,
.site-header.nav-scrolled .main-nav .has-dropdown > a { color: var(--slate) !important; }
.site-header.nav-scrolled .main-nav > a:hover,
.site-header.nav-scrolled .main-nav .has-dropdown > a:hover { color: var(--navy) !important; }
.site-header.nav-scrolled .main-nav > a.active { color: var(--navy) !important; font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--green);
  border-radius: 0 0 8px 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 6px 0;
  margin-top: 0;
}
.has-dropdown:hover .dropdown { display: block; }

.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}

.dropdown a { display: block; padding: 10px 16px; font-size: 13px; color: #334155 !important; text-transform: none; letter-spacing: 0; font-weight: 400; white-space: nowrap; }
.dropdown a:hover { background: var(--light-bg); color: #1e293b !important; }
.dropdown a.active { background: var(--light-bg); color: #1e293b !important; font-weight: 600; }

/* Nav CTA button */
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s !important;
  font-size: 13px;
}
.nav-cta:hover {
  background: #0fa068 !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 998;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--blue); }

.mobile-cta {
  margin-top: 24px;
  background: var(--blue);
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-weight: 600;
  border-bottom: none !important;
}


/* =============================================
   HERO
   ============================================= */

/* ============================================
   HERO TOP PADDING — clears fixed nav (80px)
   ============================================ */
.hero-section,
.about-hero,
.dr-hero,
.pt-hero,
.sp-hero,
.pe-hero,
.pub-hero,
.pr-hero,
.ct-hero {
  padding-top: 120px;
}

/* Edition hero sits below ed-nav-bar, not below fixed nav directly */
.ed-hero {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #0a1628 0%, #1a2f4e 50%, #0d2040 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.hero-edition {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-title span { color: var(--green); font-style: italic; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}


/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 48px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}


/* =============================================
   SDG SECTION
   ============================================= */
.sdg-section {
  padding: 100px 60px;
  background: var(--light-bg);
}

.sdg-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sdg-text { max-width: 420px; }

.sdg-text .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.sdg-text .section-badge img { height: 56px; width: auto; }

.sdg-text h2, .sdg-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.sdg-text p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 360px;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 100%;
}
.sdg-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s;
}
.sdg-grid img:hover { transform: translateY(-4px); }


/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img { flex: 1; min-width: 260px; }
.about-img img { width: 100%; border-radius: 8px; }


/* =============================================
   WHY ATTEND
   ============================================= */
.why-section {
  padding: 100px 24px;
  background: #f5f0eb;
}

.why-inner { max-width: 1200px; margin: 0 auto; }

.why-header { max-width: 600px; margin-bottom: 60px; }

.why-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.why-header p { color: var(--slate); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.feature-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2d3748;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card .icon-wrap svg { width: 22px; height: 22px; fill: #fff; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }


/* =============================================
   SPEAKERS
   ============================================= */
.speakers-section {
  padding: 100px 24px;
  background: var(--white);
}

.speakers-inner { max-width: 1200px; margin: 0 auto; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.section-header-row h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.speaker-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.speaker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.speaker-card:hover img { transform: scale(1.05); }

.speaker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.speaker-card:hover .speaker-overlay { opacity: 1; }

.speaker-info h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin: 0 0 4px; }
.speaker-info p  { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin: 0; }


/* =============================================
   PARTNERS CAROUSEL
   ============================================= */
.partners-section {
  padding: 80px 24px;
  background: #fff;
  overflow: hidden;
}

.partners-inner { max-width: 1200px; margin: 0 auto; }

.partners-header { text-align: center; margin-bottom: 48px; }

.partners-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.partners-header p { color: var(--slate); }

.carousel-track-wrap { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

.carousel-track img {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.carousel-track img:hover { opacity: 1; transform: scale(1.05); }


/* =============================================
   PAST EDITIONS
   ============================================= */
.editions-section {
  padding: 100px 24px;
  background: var(--white);
}

.editions-inner { max-width: 1200px; margin: 0 auto; }

.editions-inner > h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  max-width: 600px;
  margin-bottom: 0;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.edition-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
  color: #fff;
  transition: transform 0.2s;
}
.edition-card:hover { transform: translateY(-8px); }

.edition-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}

.edition-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.edition-card h3 { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.5; margin-bottom: 16px; }
.edition-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.editions-cta { text-align: center; margin-top: 48px; }


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0d2040 0%, #0a3d2b 100%);
  text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-inner .section-label { color: rgba(255,255,255,0.5); }

.cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 100px 24px;
  background: var(--light-bg);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-text { flex: 1; min-width: 260px; }

.contact-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-text > p {
  color: var(--slate);
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; fill: var(--blue); }

.contact-info-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.contact-info-item p  { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* Form */
.contact-form-wrap {
  flex: 1.2;
  min-width: 280px;
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.success-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--blue-dark); }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 80px 24px 40px;
  color: rgba(255,255,255,0.7);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p   { font-size: 0.9rem; line-height: 1.7; }

.footer-convened {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-convened img { height: 40px; width: auto; }
.footer-convened-text span   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.footer-convened-text strong { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a svg { width: 10px; fill: var(--blue); flex-shrink: 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { width: 16px; fill: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; }


/* =============================================
   SCROLL TO TOP
   ============================================= */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 44px;
  height: 44px;
  background: #374f59;
  color: #fff;
  border: none;
  border-radius: 20px 20px 0 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#scroll-top:hover { background: #323b60; }
#scroll-top svg  { width: 20px; fill: #fff; }


/* =============================================
   RESPONSIVE — TABLET  (≤ 960px)
   ============================================= */
@media (max-width: 960px) {
  .main-nav   { display: none; }
  .hamburger  { display: flex; }

  .logo-pair {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    gap: 3px;
  }
  .logo-pair img {
    height: 20px;
    margin: 0;
  }
  .logo-pair a:last-child img { height: 20px; }
  .logo-pair a { line-height: 0; }
  .logo-divider {
    width: 20px;
    height: 1px;
    margin: 0;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .sdg-inner   { flex-direction: column; gap: 32px; }
  .about-inner { flex-direction: column-reverse; gap: 40px; }
  .contact-inner { flex-direction: column; gap: 40px; }

  .section-header-row { flex-direction: column; align-items: flex-start; }

  .hero-title { font-size: clamp(2rem, 7vw, 3.2rem); }
}


/* =============================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  /* Stats — 2 per row */
  .stat-item {
    flex: none;
    width: 50%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .stat-number { font-size: 2rem; }

  /* Hero buttons stacked */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline  { width: 100%; justify-content: center; }

  /* Editions — single column */
  .editions-grid { grid-template-columns: 1fr; }

  /* Cards — single column */
  .cards-grid    { grid-template-columns: 1fr; }

  /* Speakers — 2 cols */
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }

  /* Form — single column */
  .form-row { grid-template-columns: 1fr; }

  /* Contact form tighter padding */
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Section padding */
  .about-section,
  .why-section,
  .speakers-section,
  .editions-section,
  .cta-banner,
  .contact-section { padding: 64px 20px; }

  .sdg-section  { padding: 56px 20px; }
  .stats-bar    { padding: 32px 16px; }
  .partners-section { padding: 56px 20px; }

  /* SDG grid tighter */
  .sdg-grid { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); gap: 6px; }

  /* Scroll-to-top repositioned */
  #scroll-top { bottom: 16px; right: 16px; }
}


/* =============================================
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
   ============================================= */
@media (max-width: 400px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .mobile-nav   { top: 64px; }
  .site-logo img { height: 38px; }

  .hero-edition { font-size: 11px; padding: 5px 12px; }
  .hero-subtitle { font-size: 0.95rem; }

  .contact-form-wrap { padding: 20px 16px; }
  .edition-card { padding: 24px 20px; }
  .feature-card { padding: 24px 20px; }
}


/* =============================================
   PAST EVENTS — SCROLLABLE DROPDOWN
   ============================================= */
.dropdown--scroll {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.dropdown--scroll::-webkit-scrollbar { width: 4px; }
.dropdown--scroll::-webkit-scrollbar-track { background: transparent; }
.dropdown--scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }


/* =============================================
   MOBILE SUBMENU (Past Events accordion)
   ============================================= */
.mobile-submenu { border-bottom: 1px solid var(--border); }

.mobile-submenu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-submenu-title:hover { color: var(--blue); }

.mobile-submenu-links { padding-bottom: 8px; }

.mobile-submenu-links a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0;
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
}
.mobile-submenu-links a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
}


/* =============================================
   EVENT DETAILS + COUNTDOWN STRIP
   ============================================= */
.event-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.event-strip-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-strip-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.event-strip-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.event-strip-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-sep { opacity: 0.4; }

.event-strip-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cd-block {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 12px;
  text-align: center;
  min-width: 52px;
}

.cd-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.cd-unit {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
  display: block;
}

.cd-sep {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 300;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.cd-status {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.event-strip-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.event-strip-btn:hover { background: var(--blue-dark); color: #fff; }

@media (max-width: 960px) {
  .event-strip { padding: 20px 24px; gap: 20px; flex-wrap: wrap; }
  .event-strip-left { width: 100%; }
}

@media (max-width: 640px) {
  .event-strip { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .event-strip-timer { width: 100%; justify-content: flex-start; }
  .cd-block { flex: 1; min-width: 0; padding: 8px 4px; }
  .cd-num { font-size: 1.2rem; }
  .event-strip-btn { width: 100%; text-align: center; padding: 12px; }
}


/* =============================================
   EVENT INFO BLOCK
   (between Why Attend and Past Editions)
   ============================================= */
.event-info-block {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  padding: 72px 24px;
}

.event-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.event-info-left {
  flex: 1;
  min-width: 280px;
}

.event-info-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
}

.event-info-left .section-label {
  color: var(--green);
}

.event-info-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.event-info-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.meta-icon { font-size: 1.15rem; flex-shrink: 0; }

/* Countdown inside the block */
.event-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ecd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 16px;
}

.ecd-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.ecd-unit {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.ecd-sep {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.event-status {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7ec8e3;
}

/* Ticket button — white outlined on dark background */
.event-info-right { flex-shrink: 0; }

.event-ticket-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  border: 2px solid #fff;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.event-ticket-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .event-info-block { padding: 52px 20px; }
  .event-info-inner { flex-direction: column; gap: 36px; }
  .event-info-right { width: 100%; }
  .event-ticket-btn { display: block; text-align: center; }
  .ecd-block { min-width: 60px; padding: 12px 10px; }
  .ecd-num { font-size: 1.8rem; }
}

@media (max-width: 400px) {
  .ecd-block { min-width: 52px; padding: 10px 8px; }
  .ecd-num { font-size: 1.5rem; }
  .ecd-sep { font-size: 1.4rem; }
}
/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 100px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img { flex: 1; min-width: 260px; }
.about-img img { width: 100%; border-radius: 8px; }


/* =============================================
   WHY ATTEND
   ============================================= */
.why-section {
  padding: 100px 24px;
  background: var(--light-bg);
}

.why-inner { max-width: 1200px; margin: 0 auto; }

.why-header { max-width: 600px; margin-bottom: 60px; }

.why-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.why-header p { color: var(--slate); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.feature-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card .icon-wrap svg { width: 22px; height: 22px; fill: #fff; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }


/* =============================================
   SPEAKERS
   ============================================= */
.speakers-section {
  padding: 100px 24px;
  background: var(--white);
}

.speakers-inner { max-width: 1200px; margin: 0 auto; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.section-header-row h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.speaker-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.speaker-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.speaker-card:hover img { transform: scale(1.05); }

.speaker-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.speaker-card:hover .speaker-overlay { opacity: 1; }

.speaker-info h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin: 0 0 4px; }
.speaker-info p  { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin: 0; }


/* =============================================
   PARTNERS CAROUSEL
   ============================================= */
.partners-section {
  padding: 80px 24px;
  background: var(--navy);
  overflow: hidden;
}

.partners-inner { max-width: 1200px; margin: 0 auto; }

.partners-header { text-align: center; margin-bottom: 48px; }

.partners-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.partners-header p { color: rgba(255,255,255,0.6); }

.carousel-track-wrap { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

.carousel-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.carousel-track img:hover { opacity: 1; }


/* =============================================
   PAST EDITIONS
   ============================================= */
.editions-section {
  padding: 100px 24px;
  background: var(--white);
}

.editions-inner { max-width: 1200px; margin: 0 auto; }

.editions-inner > h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  max-width: 600px;
  margin-bottom: 0;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.edition-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
  color: #fff;
  transition: transform 0.2s;
}
.edition-card:hover { transform: translateY(-8px); }

.edition-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 4px;
}

.edition-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.edition-card h3 { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.5; margin-bottom: 16px; }
.edition-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.editions-cta { text-align: center; margin-top: 48px; }


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2040 100%);
  text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-inner .section-label { color: rgba(255,255,255,0.5); }

.cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 100px 24px;
  background: var(--light-bg);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-text { flex: 1; min-width: 260px; }

.contact-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-text > p {
  color: var(--slate);
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; fill: var(--blue); }

.contact-info-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.contact-info-item p  { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* Form */
.contact-form-wrap {
  flex: 1.2;
  min-width: 280px;
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.success-msg {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: var(--blue-dark); }


/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 80px 24px 40px;
  color: rgba(255,255,255,0.7);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.footer-brand p   { font-size: 0.9rem; line-height: 1.7; }

.footer-convened {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-convened img { height: 40px; width: auto; }
.footer-convened-text span   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.footer-convened-text strong { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a svg { width: 10px; fill: var(--blue); flex-shrink: 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { width: 16px; fill: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; }


/* =============================================
   SCROLL TO TOP
   ============================================= */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 44px;
  height: 44px;
  background: #374f59;
  color: #fff;
  border: none;
  border-radius: 20px 20px 0 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#scroll-top:hover { background: #323b60; }
#scroll-top svg  { width: 20px; fill: #fff; }


/* =============================================
   RESPONSIVE — TABLET  (≤ 960px)
   ============================================= */
@media (max-width: 960px) {
  .main-nav   { display: none; }
  .hamburger  { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .sdg-inner   { flex-direction: column; gap: 32px; }
  .about-inner { flex-direction: column-reverse; gap: 40px; }
  .contact-inner { flex-direction: column; gap: 40px; }

  .section-header-row { flex-direction: column; align-items: flex-start; }

  .hero-title { font-size: clamp(2rem, 7vw, 3.2rem); }
}


/* =============================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  /* Stats — 2 per row */
  .stat-item {
    flex: none;
    width: 50%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .stat-number { font-size: 2rem; }

  /* Hero buttons stacked */
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline  { width: 100%; justify-content: center; }

  /* Editions — single column */
  .editions-grid { grid-template-columns: 1fr; }

  /* Cards — single column */
  .cards-grid    { grid-template-columns: 1fr; }

  /* Speakers — 2 cols */
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }

  /* Form — single column */
  .form-row { grid-template-columns: 1fr; }

  /* Contact form tighter padding */
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer — single column */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Section padding */
  .about-section,
  .why-section,
  .speakers-section,
  .editions-section,
  .cta-banner,
  .contact-section { padding: 64px 20px; }

  .sdg-section  { padding: 56px 20px; }
  .stats-bar    { padding: 32px 16px; }
  .partners-section { padding: 56px 20px; }

  /* SDG grid tighter */
  .sdg-grid { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); gap: 6px; }

  /* Scroll-to-top repositioned */
  #scroll-top { bottom: 16px; right: 16px; }
}


/* =============================================
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
   ============================================= */
@media (max-width: 400px) {
  .header-inner { height: 64px; padding: 0 16px; }
  .mobile-nav   { top: 64px; }
  .site-logo img { height: 38px; }

  .hero-edition { font-size: 11px; padding: 5px 12px; }
  .hero-subtitle { font-size: 0.95rem; }

  .contact-form-wrap { padding: 20px 16px; }
  .edition-card { padding: 24px 20px; }
  .feature-card { padding: 24px 20px; }
}


/* =============================================
   PAST EVENTS — SCROLLABLE DROPDOWN
   ============================================= */
.dropdown--scroll {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.dropdown--scroll::-webkit-scrollbar { width: 4px; }
.dropdown--scroll::-webkit-scrollbar-track { background: transparent; }
.dropdown--scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }


/* =============================================
   MOBILE SUBMENU (Past Events accordion)
   ============================================= */
.mobile-submenu { border-bottom: 1px solid var(--border); }

.mobile-submenu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-submenu-title:hover { color: var(--blue); }

.mobile-submenu-links { padding-bottom: 8px; }

.mobile-submenu-links a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0;
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
}
.mobile-submenu-links a:hover {
  color: var(--blue);
  border-left-color: var(--blue);
}


/* =============================================
   EVENT DETAILS + COUNTDOWN STRIP
   ============================================= */
.event-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.event-strip-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-strip-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.event-strip-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.event-strip-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-sep { opacity: 0.4; }

.event-strip-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cd-block {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 12px;
  text-align: center;
  min-width: 52px;
}

.cd-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.cd-unit {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
  display: block;
}

.cd-sep {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 300;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.cd-status {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.event-strip-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.event-strip-btn:hover { background: var(--blue-dark); color: #fff; }

@media (max-width: 960px) {
  .event-strip { padding: 20px 24px; gap: 20px; flex-wrap: wrap; }
  .event-strip-left { width: 100%; }
}

@media (max-width: 640px) {
  .event-strip { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .event-strip-timer { width: 100%; justify-content: flex-start; }
  .cd-block { flex: 1; min-width: 0; padding: 8px 4px; }
  .cd-num { font-size: 1.2rem; }
  .event-strip-btn { width: 100%; text-align: center; padding: 12px; }
}


/* =============================================
   EVENT INFO BLOCK
   (between Why Attend and Past Editions)
   ============================================= */
.event-info-block {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  padding: 72px 24px;
}

.event-info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.event-info-left {
  flex: 1;
  min-width: 280px;
}

.event-info-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
}

.event-info-left .section-label {
  color: rgba(255,255,255,0.5);
}

.event-info-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.event-info-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.meta-icon { font-size: 1.15rem; flex-shrink: 0; }

/* Countdown inside the block */
.event-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ecd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 14px 16px;
}

.ecd-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.ecd-unit {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.ecd-sep {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.event-status {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7ec8e3;
}

/* Ticket button — white outlined on dark background */
.event-info-right { flex-shrink: 0; }

.event-ticket-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  border: 2px solid #fff;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.event-ticket-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .event-info-block { padding: 52px 20px; }
  .event-info-inner { flex-direction: column; gap: 36px; }
  .event-info-right { width: 100%; }
  .event-ticket-btn { display: block; text-align: center; }
  .ecd-block { min-width: 60px; padding: 12px 10px; }
  .ecd-num { font-size: 1.8rem; }
}

@media (max-width: 400px) {
  .ecd-block { min-width: 52px; padding: 10px 8px; }
  .ecd-num { font-size: 1.5rem; }
  .ecd-sep { font-size: 1.4rem; }
}

/* =============================================
   STS 2026 — about.css
   Colours matched to site palette.
   Layout is original from about.html source.
   ============================================= */


/* ---- HERO ---- */
.about-hero {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a2f4e 50%, #0d2040 100%);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
}

/* Hero entrance animation */
.reveal-hero .about-hero-content {
  animation: fadeInUp 0.9s ease 0.2s both;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.about-hero-content .hero-edition {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.15;
}

.about-hero-content h1 span {
  color: var(--light-blue);
  font-style: italic;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero { height: 380px; }
  .about-hero-content { padding: 0 24px; }
  .about-hero-content h1 { font-size: 2.2rem; }
}


/* ---- ABOUT TEXT ---- */
.about-text {
  padding: 80px 60px;
  background: #fff;
}

.about-text-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-text-left { flex: 1; }

.about-text-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 20px;
}

.about-text-left p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text-left p:last-child { margin-bottom: 0; }

.about-text-right {
  flex: 0 0 360px;
}

.about-text-right img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: 30px;
  opacity: 10;
}

@media (max-width: 960px) {
  .about-text { padding: 60px 30px; }
  .about-text-inner { flex-direction: column-reverse; gap: 36px; }
  .about-text-right { flex: none; width: 100%; max-width: 480px; }
}

@media (max-width: 640px) {
  .about-text { padding: 52px 20px; }
}


/* ---- PILLARS ---- */
.pillars {
  background: var(--light-bg);
  padding: 80px 60px;
}

.pillars h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pillars-intro {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 6px;
  border-left: 4px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 960px) {
  .pillars { padding: 60px 30px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pillars { padding: 52px 20px; }
  .pillars-grid { grid-template-columns: 1fr; }
}


/* ---- MILESTONES ACCORDION ---- */
.milestones {
  padding: 80px 60px;
  background: #fff;
}

.milestones h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}

.accordion-trigger:hover { background: var(--light-bg); padding-left: 8px; padding-right: 8px; margin: 0 -8px; }

.accordion-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 48px;
  flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.accordion-arrow {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--slate);
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
  user-select: none;
  border: none;
  background: none;
  border-radius: 0;
  transition: color 0.2s;
}

.accordion-item.open .accordion-arrow {
  font-size: 0;
  color: var(--navy);
}
.accordion-item.open .accordion-arrow::before {
  content: "2";
  font-size: 1.1rem;
  font-weight: 300;
  display: block;
}
.accordion-item.open .accordion-arrow::before { content: "−"; }
.accordion-item.open .accordion-arrow { font-size: 0; }
.accordion-item.open .accordion-arrow::before { font-size: 1.2rem; font-weight: 300; }

/* Highlight the 2026 current edition */
.accordion-item--current .accordion-year { color: var(--navy); }
.accordion-item--current .accordion-trigger { border-left: 3px solid var(--blue); padding-left: 12px; }

.accordion-theme {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.accordion-body {
  padding: 0 0 24px 90px;
}

.accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-body ul li {
  font-size: 0.9rem;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}

.accordion-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 768px) {
  .milestones { padding: 60px 30px; }
  .accordion-body { padding-left: 16px; }
  .accordion-theme { font-size: 0.88rem; }
}

@media (max-width: 640px) {
  .milestones { padding: 52px 20px; }
}


/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--light-bg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 50px;
}

.quote-mark {
  position: absolute;
  top: 60px;
  right: 60px;
  font-size: 8rem;
  color: var(--border);
  line-height: 1;
  font-family: 'Playfair Display', Georgia, serif;
  pointer-events: none;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
}

.testimonial-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 30px 24px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
  background: var(--light-bg);
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--slate);
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.testimonial-role {
  font-size: 0.83rem;
  color: var(--blue);
  font-style: italic;
  text-align: right;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .testimonials { padding: 60px 30px; }
  .testimonials-grid { flex-direction: column; }
  .quote-mark { font-size: 5rem; top: 20px; right: 20px; }
}

@media (max-width: 640px) {
  .testimonials { padding: 52px 20px; }
}


/* ---- PHOTO HIGHLIGHTS ---- */
.photo-highlights {
  background: #fff;
  padding: 80px 60px;
}

.photo-highlights-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.photo-highlights h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.photo-view-all {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.photo-view-all:hover { border-color: var(--green); color: var(--green); }

.photo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-bg);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-item:hover img { transform: scale(1.04); }

.photo-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-dim { opacity: 0.5; }

.photo-placeholder {
  width: 100%;
  height: 220px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .photo-highlights { padding: 60px 30px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .photo-highlights { padding: 52px 20px; }
  .photo-grid { grid-template-columns: 1fr; }
}


/* ---- STS@10 COUNTDOWN ---- */
.sts10-top {
  background: var(--navy);
  padding: 70px 60px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sts10-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.sts10-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 36px;
}

.countdown-block {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px 28px;
  text-align: center;
  min-width: 110px;
}

.countdown-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.countdown-unit {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 10px;
  display: block;
}

.countdown-sep {
  font-size: 44px;
  font-weight: 300;
  color: var(--blue);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.countdown-status {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.sts10-meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.sts10-meta-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.sts10-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.sts10-btn:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sts10-top { padding: 50px 30px 40px; }
  .countdown { gap: 6px; }
  .countdown-block { padding: 16px 14px; min-width: 70px; }
  .countdown-num { font-size: 32px; }
  .countdown-sep { font-size: 28px; }
  .sts10-meta-row { flex-direction: column; gap: 10px; }
}

@media (max-width: 640px) {
  .sts10-top { padding: 44px 20px 36px; }
}


/* ---- STS@10 OBJECTIVES ---- */
.sts10-bottom {
  background: #162840;
  padding: 60px 60px;
}

.sts10-objectives-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 36px;
  text-align: center;
}

.objectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.objective-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.objective-item.full {
  grid-column: 1 / -1;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}

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

.objective-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .sts10-bottom { padding: 48px 30px; }
  .objectives-grid { grid-template-columns: 1fr; }
  .objective-item.full { grid-column: 1; max-width: 100%; }
}

@media (max-width: 640px) {
  .sts10-bottom { padding: 40px 20px; }
}


/* =============================================
   CHANGE 1 — EVENT STRIP UNDER HERO
   ============================================= */
.about-event-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.about-strip-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.about-strip-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.about-strip-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.about-strip-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.about-strip-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.about-strip-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.about-strip-btn:hover { background: var(--blue-dark); color: #fff; }

@media (max-width: 960px) {
  .about-event-strip { padding: 18px 30px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .about-event-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .about-strip-timer { width: 100%; justify-content: flex-start; }
  .about-strip-btn { width: 100%; text-align: center; padding: 12px; }
}


/* =============================================
   CHANGE 2 — PILLARS: slimmer, wider
   ============================================= */
.pillars {
  background: var(--light-bg);
  padding: 80px 40px; /* wider horizontal breathing room */
}

.pillars-grid {
  max-width: 1400px; /* wider container */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; /* tighter gap for slimmer feel */
}

.pillar-card {
  background: #fff;
  padding: 18px 20px; /* slimmer padding */
  border-radius: 6px;
  border-left: 4px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 24px;
  margin-bottom: 0;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 960px) {
  .pillars { padding: 60px 24px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars { padding: 52px 16px; }
  .pillars-grid { grid-template-columns: 1fr; }
}


/* =============================================
   CHANGE 3 — ACCORDION: hover stays dark when open,
               body reveals on nice white slide-down
   ============================================= */

/* Keep trigger background dark when item is open */
.accordion-item.open .accordion-trigger {
  background: var(--light-bg);
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 -8px;
}

/* Accordion body — slide down from hidden */
.accordion-body {
  overflow: hidden;
  background: #fff;
  border-left: 3px solid var(--blue);
  margin-left: 0;
  padding: 0;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* When open — let JS remove hidden and set max-height via class */
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding: 20px 24px 24px 24px;
}

.accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-body ul li {
  font-size: 0.9rem;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.accordion-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

@media (max-width: 640px) {
  .accordion-item.open .accordion-body { padding: 16px 16px 20px 16px; }
}


/* =============================================
   CHANGE 4 — STS@10 COUNTDOWN: use site blue
   ============================================= */
.sts10-top--blue {
  background: var(--blue) !important;
}

.sts10-top--blue .sts10-tag { color: #fff; opacity: 0.7; }
.sts10-top--blue .sts10-subtitle { color: rgba(255,255,255,0.75); }
.sts10-top--blue .countdown-num { color: #fff; }
.sts10-top--blue .countdown-sep { color: rgba(255,255,255,0.6); }
.sts10-top--blue .countdown-unit { color: rgba(255,255,255,0.55); }
.sts10-top--blue .countdown-block {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}
.sts10-top--blue .sts10-meta-item { color: rgba(255,255,255,0.65); }
.sts10-top--blue .countdown-status { color: #fff; }
.sts10-top--blue .sts10-btn {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}
.sts10-top--blue .sts10-btn:hover {
  background: var(--light-bg);
  color: var(--blue-dark);
}


/* =============================================
   CHANGE 5 — OBJECTIVES: white background, nicer layout
   ============================================= */
.sts10-bottom--white {
  background: #fff !important;
  padding: 80px 60px;
}

.sts10-bottom--white .sts10-objectives-label {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
  display: block;
}

.sts10-bottom--white .objectives-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sts10-bottom--white .objective-item {
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--green);
  padding: 20px 20px 20px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sts10-bottom--white .objective-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.sts10-bottom--white .objective-dot {
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.sts10-bottom--white .objective-item p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.sts10-bottom--white .objective-item.full {
  grid-column: 1 / -1;
  max-width: 100%;
  background: var(--light-bg);
  border-left-color: var(--green);
}

.sts10-bottom--white .objective-item.full p { color: var(--slate); }
.sts10-bottom--white .objective-item.full .objective-dot { background: var(--green); }

@media (max-width: 960px) {
  .sts10-bottom--white { padding: 60px 30px; }
  .sts10-bottom--white .objectives-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sts10-bottom--white { padding: 52px 20px; }
  .sts10-bottom--white .objectives-grid { grid-template-columns: 1fr; }
  .sts10-bottom--white .objective-item.full { grid-column: 1; }
}


/* =============================================
   CHANGE 6 — FOOTER: match partners page style
   ============================================= */
.about-footer {
  background: #0f1117;
  color: #fff;
  padding: 80px 60px 0 60px;
}

.about-footer-inner {
  display: flex;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-footer-contact { flex: 1; }

.about-footer-contact h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.about-footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 28px;
  max-width: 380px;
}

.about-contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.about-contact-detail:hover { color: #fff; }

.about-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.about-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.about-footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.about-footer-subscribe { flex: 1; }

.about-footer-subscribe h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-subscribe-form input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 16px;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  font-family: inherit;
}
.about-subscribe-form input::placeholder { color: #888; }
.about-subscribe-form input:focus { border-color: var(--blue); }

.about-subscribe-form button {
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.about-subscribe-form button:hover { background: var(--blue-dark); }

.about-subscribe-success {
  display: none;
  background: rgba(46,139,87,0.15);
  border: 1px solid #2e8b57;
  color: #7ecfa0;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}

.about-footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .about-footer { padding: 60px 30px 0; }
  .about-footer-inner { flex-direction: column; gap: 50px; }
}
@media (max-width: 640px) {
  .about-footer { padding: 52px 20px 0; }
}


/* =============================================
   TESTIMONIALS — left-align heading
   ============================================= */
.testimonials {
  text-align: left;
}
.testimonials h2 {
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-grid {
  text-align: left;
}
/* Remove floating quote mark (conflicts with left align) */
.quote-mark { display: none; }


/* =============================================
   STS@10 UNIFIED SECTION
   ============================================= */
.sts10-unified {
  background: var(--navy);
  padding: 80px 60px;
}

.sts10-unified-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top row */
.sts10-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sts10-left { flex: 1; min-width: 260px; }

.sts10-edition-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sts10-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 480px;
}

.sts10-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sts10-meta span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* Right: countdown + button */
.sts10-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.sts10-countdown-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sts10-cd-block {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
}

.sts10-cd-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.sts10-cd-unit {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
  display: block;
}

.sts10-cd-sep {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.sts10-register-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.sts10-register-btn:hover {
  background: #0f9a68;
  color: #fff;
  transform: translateY(-2px);
}

/* Divider */
.sts10-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 36px;
}

/* Objectives label */
.sts10-obj-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

/* Objectives grid */
.sts10-obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sts10-obj-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.sts10-obj-card:hover { background: rgba(255,255,255,0.07); }

.sts10-obj-card--full { grid-column: 1 / -1; }

.sts10-obj-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sts10-obj-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.sts10-obj-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* SDG icon row */
.sts10-sdg-icons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding-left: 16px;
}

.sts10-sdg-icons img {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.15s, transform 0.15s;
}
.sts10-sdg-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
  .sts10-unified { padding: 60px 30px; }
  .sts10-top-row { flex-direction: column; gap: 32px; }
  .sts10-right { align-items: flex-start; }
  .sts10-obj-grid { grid-template-columns: repeat(2, 1fr); }
  .sts10-obj-card--full { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .sts10-unified { padding: 52px 20px; }
  .sts10-countdown-row { gap: 5px; }
  .sts10-cd-block { min-width: 52px; padding: 10px 10px; }
  .sts10-cd-num { font-size: 1.4rem; }
  .sts10-obj-grid { grid-template-columns: 1fr; }
}
/* =============================================
   STS 2026 — deal-room.css
   ============================================= */

   :root { --green: #14B57B; }


   /* ---- HERO ---- */
   .dr-hero {
     background: var(--navy);
     padding: 120px 60px 64px;
     position: relative;
     overflow: hidden;
   }
   
   .dr-hero::before {
     content: '';
     position: absolute;
     top: -80px; right: -80px;
     width: 420px; height: 420px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(20,181,123,0.08) 0%, transparent 70%);
     pointer-events: none;
   }
   
   .dr-hero-eyebrow {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.2em;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
   }
   .dr-hero-eyebrow::after {
     content: '';
     flex: 0 0 36px;
     height: 1px;
     background: var(--green);
     opacity: 0.5;
   }
   
   .dr-hero-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(2.4rem, 5vw, 3.6rem);
     font-weight: 700;
     color: #fff;
     line-height: 1.15;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
   }
   .dr-hero-title span {
     color: var(--green);
     font-style: italic;
   }
   
   .dr-hero-sub {
     font-size: 1rem;
     color: rgba(255,255,255,0.55);
     line-height: 1.8;
     max-width: 520px;
     position: relative;
     z-index: 1;
   }
   
   @media (max-width: 768px) {
     .dr-hero { padding: 56px 24px 48px; }
     .dr-hero-title { font-size: 2.2rem; }
   }
   
   
   /* ---- EVENT STRIP ---- */
   .dr-strip {
     background: #0f1117;
     border-top: 3px solid var(--blue);
     padding: 18px 60px;
     display: flex;
     align-items: center;
     gap: 24px;
     flex-wrap: nowrap;
   }
   
   .dr-strip-left {
     flex: 1;
     min-width: 0;
     display: flex;
     flex-direction: column;
     gap: 3px;
   }
   
   .dr-strip-label {
     font-size: 10px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.18em;
   }
   
   .dr-strip-title {
     font-size: 0.9rem;
     font-weight: 500;
     color: #fff;
     line-height: 1.4;
   }
   
   .dr-strip-date {
     font-size: 0.75rem;
     color: rgba(255,255,255,0.4);
     margin-top: 2px;
   }
   
   .dr-strip-timer {
     display: flex;
     align-items: center;
     gap: 6px;
     flex-shrink: 0;
   }
   
   /* Reuse cd-block from style.css */
   .dr-strip .cd-sep { color: rgba(255,255,255,0.3); }
   
   .dr-strip-btn {
     display: inline-block;
     padding: 9px 20px;
     background: var(--blue);
     color: #fff;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.82rem;
     border-radius: 4px;
     white-space: nowrap;
     transition: background 0.2s;
     flex-shrink: 0;
   }
   .dr-strip-btn:hover { background: var(--blue-dark); color: #fff; }
   
   @media (max-width: 960px) {
     .dr-strip { padding: 18px 30px; flex-wrap: wrap; }
   }
   @media (max-width: 640px) {
     .dr-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
     .dr-strip-timer { width: 100%; }
     .dr-strip-btn { width: 100%; text-align: center; padding: 12px; }
   }
   
   
   /* ---- PRIMARY TABS ---- */
   .dr-tabs-bar {
     background: #0f1117;
     border-bottom: 1px solid rgba(255,255,255,0.08);
     padding: 0 60px;
     position: sticky;
     top: 80px;
     z-index: 50;
   }
   
   .dr-tabs { display: flex; }
   
   .dr-tab {
     padding: 18px 32px;
     font-size: 0.85rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     color: rgba(255,255,255,0.35);
     cursor: pointer;
     border: none;
     border-bottom: 3px solid transparent;
     background: none;
     font-family: inherit;
     transition: color 0.2s, border-color 0.2s;
     white-space: nowrap;
   }
   .dr-tab:hover { color: rgba(255,255,255,0.7); }
   .dr-tab.active { color: #fff; border-bottom-color: var(--green); }
   
   @media (max-width: 768px) {
     .dr-tabs-bar { padding: 0 20px; top: 64px; }
     .dr-tab { padding: 14px 16px; font-size: 0.78rem; }
   }
   
   
   /* ---- PANELS ---- */
   .dr-body { background: var(--light-bg); min-height: 60vh; }
   .dr-panel { display: none; }
   .dr-panel.active { display: block; }
   
   
   /* ---- SECONDARY TABS ---- */
   .dr-sub-tabs-bar {
     background: #fff;
     border-bottom: 1.5px solid var(--border);
     padding: 0 60px;
   }
   
   .dr-sub-tabs { display: flex; }
   
   .dr-sub-tab {
     padding: 14px 28px;
     font-size: 0.85rem;
     font-weight: 600;
     color: #94a3b8;
     cursor: pointer;
     border: none;
     border-bottom: 3px solid transparent;
     background: none;
     font-family: inherit;
     letter-spacing: 0.03em;
     transition: color 0.2s, border-color 0.2s;
     margin-bottom: -1.5px;
   }
   .dr-sub-tab:hover { color: var(--slate); }
   .dr-sub-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
   
   .dr-sub-panel { display: none; }
   .dr-sub-panel.active { display: block; }
   
   @media (max-width: 768px) {
     .dr-sub-tabs-bar { padding: 0 20px; }
     .dr-sub-tab { padding: 12px 16px; font-size: 0.8rem; }
   }
   
   
   /* ---- FORM WRAPPER ---- */
   .dr-form-wrapper {
     max-width: 860px;
     margin: 0 auto;
     padding: 60px 60px 80px;
   }
   
   @media (max-width: 768px) {
     .dr-form-wrapper { padding: 40px 24px 60px; }
   }
   
   .dr-form-intro {
     margin-bottom: 40px;
     padding-bottom: 32px;
     border-bottom: 1px solid var(--border);
   }
   
   .dr-form-tag {
     font-size: 10px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.18em;
     margin-bottom: 10px;
   }
   
   .dr-form-intro h2 {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.5rem, 3vw, 1.9rem);
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 10px;
     line-height: 1.3;
   }
   
   .dr-form-intro p {
     font-size: 0.92rem;
     color: var(--slate);
     line-height: 1.7;
   }
   
   
   /* ---- FORM SECTIONS ---- */
   .dr-form-section { margin-bottom: 36px; }
   
   .dr-section-title {
     font-size: 11px;
     font-weight: 600;
     color: var(--blue);
     text-transform: uppercase;
     letter-spacing: 0.14em;
     margin-bottom: 18px;
     display: flex;
     align-items: center;
     gap: 12px;
   }
   .dr-section-title::after {
     content: '';
     flex: 1;
     height: 1px;
     background: var(--border);
   }
   
   
   /* ---- FORM GRID & FIELDS ---- */
   .dr-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
   }
   
   .dr-full { grid-column: 1 / -1; }
   
   @media (max-width: 600px) {
     .dr-grid { grid-template-columns: 1fr; }
     .dr-full { grid-column: 1; }
   }
   
   .dr-field {
     display: flex;
     flex-direction: column;
     gap: 5px;
   }
   
   .dr-field label {
     font-size: 12px;
     font-weight: 500;
     color: var(--slate);
     letter-spacing: 0.02em;
   }
   
   .dr-field .opt {
     font-size: 11px;
     font-weight: 400;
     color: #94a3b8;
     margin-left: 4px;
   }
   
   .dr-field input,
   .dr-field select,
   .dr-field textarea {
     padding: 11px 14px;
     border: 1.5px solid var(--border);
     border-radius: 5px;
     font-size: 0.9rem;
     color: var(--navy);
     background: #fff;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
     width: 100%;
     font-family: inherit;
   }
   
   .dr-field input::placeholder,
   .dr-field textarea::placeholder { color: #b0bac5; }
   
   .dr-field input:focus,
   .dr-field select:focus,
   .dr-field textarea:focus {
     border-color: var(--blue);
     box-shadow: 0 0 0 3px rgba(4,107,210,0.08);
   }
   
   .dr-field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
   
   .word-count {
     font-size: 11px;
     color: #b0bac5;
     text-align: right;
     margin-top: 3px;
   }
   .word-count.over { color: #d0392b; }
   
   .phone-row { display: flex; gap: 8px; }
   .phone-row select {
     width: 150px;
     flex-shrink: 0;
     padding: 11px 8px;
     border: 1.5px solid var(--border);
     border-radius: 5px;
     font-size: 0.85rem;
     color: var(--navy);
     background: #fff;
     outline: none;
     transition: border-color 0.2s;
     font-family: inherit;
   }
   .phone-row select:focus { border-color: var(--blue); }
   .phone-row input { flex: 1; }
   
   .dr-field.error input,
   .dr-field.error select,
   .dr-field.error textarea { border-color: #d0392b; }
   
   
   /* ---- CHECKBOX ITEMS ---- */
   .dr-check-list {
     display: flex;
     flex-direction: column;
     gap: 6px;
     margin-top: 4px;
   }
   
   .dr-check-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 11px 14px;
     background: #fff;
     border: 1.5px solid var(--border);
     border-radius: 5px;
     cursor: pointer;
     transition: border-color 0.2s, background 0.2s;
     font-size: 0.88rem;
     color: var(--slate);
     line-height: 1.5;
   }
   
   .dr-check-item:hover { border-color: var(--blue); background: #f0f6ff; }
   
   .dr-check-item input[type="checkbox"] {
     width: 15px;
     height: 15px;
     margin-top: 2px;
     flex-shrink: 0;
     accent-color: var(--blue);
     border: none;
     padding: 0;
   }
   
   .dr-check-item.selected {
     border-color: var(--blue);
     background: #eff6ff;
     color: var(--navy);
   }
   
   .dr-check-item span { flex: 1; min-width: 0; }
   
   
   /* ---- RADIO PILLS ---- */
   .dr-radio-row {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 4px;
   }
   
   .dr-radio-item {
     padding: 9px 18px;
     background: #fff;
     border: 1.5px solid var(--border);
     border-radius: 20px;
     cursor: pointer;
     font-size: 0.82rem;
     color: var(--slate);
     transition: border-color 0.2s, background 0.2s, color 0.2s;
     display: flex;
     align-items: center;
     gap: 7px;
     line-height: 1;
   }
   
   .dr-radio-item input[type="radio"] {
     accent-color: var(--blue);
     width: 14px;
     height: 14px;
     flex-shrink: 0;
     border: none;
     padding: 0;
   }
   
   .dr-radio-item:hover { border-color: var(--blue); }
   
   .dr-radio-item.selected {
     border-color: var(--blue);
     background: #eff6ff;
     color: var(--navy);
     font-weight: 500;
   }
   
   
   /* ---- FILE UPLOAD ---- */
   .dr-file-area {
     border: 2px dashed var(--border);
     border-radius: 6px;
     padding: 28px;
     text-align: center;
     background: #fafafa;
     cursor: pointer;
     transition: border-color 0.2s, background 0.2s;
     position: relative;
   }
   
   .dr-file-area:hover { border-color: var(--blue); background: #f0f6ff; }
   
   .dr-file-area input[type="file"] {
     position: absolute;
     inset: 0;
     opacity: 0;
     cursor: pointer;
     width: 100%;
     height: 100%;
     border: none;
     padding: 0;
   }
   
   .dr-file-icon { font-size: 1.8rem; margin-bottom: 8px; }
   
   .dr-file-text {
     font-size: 0.85rem;
     color: var(--slate);
     line-height: 1.6;
   }
   
   .dr-file-text strong { color: var(--blue); }
   
   .dr-file-names {
     margin-top: 10px;
     font-size: 0.8rem;
     color: var(--slate);
   }
   
   
   /* ---- SUBMIT ---- */
   .dr-submit-row {
     margin-top: 36px;
     padding-top: 28px;
     border-top: 1px solid var(--border);
   }
   
   .dr-submit-btn {
     padding: 14px 40px;
     background: var(--blue);
     color: #fff;
     border: none;
     border-radius: 5px;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s, transform 0.2s;
     font-family: inherit;
     letter-spacing: 0.03em;
   }
   .dr-submit-btn:hover {
     background: var(--blue-dark);
     transform: translateY(-2px);
   }
   
   
   /* ---- SUCCESS STATE ---- */
   .dr-success {
     display: none;
     background: #eaf3de;
     border: 1px solid #97c459;
     border-radius: 8px;
     padding: 40px 32px;
     text-align: center;
     margin-top: 8px;
   }
   
   .dr-success-icon {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     background: #3b6d11;
     color: #fff;
     font-size: 1.4rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
   }
   
   .dr-success h3 {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 1.3rem;
     font-weight: 700;
     color: #3b6d11;
     margin-bottom: 10px;
   }
   
   .dr-success p {
     font-size: 0.92rem;
     color: #3b6d11;
     line-height: 1.75;
     max-width: 520px;
     margin: 0 auto;
   }
   
   
   /* =============================================
      ANIMATIONS & TRANSITIONS
      ============================================= */
   
   /* Hero entrance */
   .dr-hero-eyebrow {
     animation: fadeInUp 0.7s ease 0.1s both;
   }
   .dr-hero-title {
     animation: fadeInUp 0.7s ease 0.25s both;
   }
   .dr-hero-sub {
     animation: fadeInUp 0.7s ease 0.4s both;
   }
   
   /* Strip slide in */
   .dr-strip {
     animation: fadeInUp 0.5s ease 0.5s both;
   }
   
   /* Tab bar fade in */
   .dr-tabs-bar {
     animation: fadeInUp 0.4s ease 0.6s both;
   }
   
   /* Panel fade when switching tabs */
   .dr-panel.active,
   .dr-sub-panel.active {
     animation: drPanelIn 0.3s ease both;
   }
   
   @keyframes drPanelIn {
     from { opacity: 0; transform: translateY(10px); }
     to   { opacity: 1; transform: translateY(0); }
   }
   
   /* Form intro fade in */
   .dr-form-intro {
     animation: fadeInUp 0.5s ease 0.1s both;
   }
   
   /* Form sections stagger in on scroll */
   .dr-form-section {
     opacity: 0;
     transform: translateY(18px);
     transition: opacity 0.5s ease, transform 0.5s ease;
   }
   .dr-form-section.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* Checkbox hover lift */
   .dr-check-item {
     transition: border-color 0.2s, background 0.2s, transform 0.15s;
   }
   .dr-check-item:hover { transform: translateX(3px); }
   .dr-check-item.selected { transform: translateX(3px); }
   
   /* Radio pill press feel */
   .dr-radio-item {
     transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
   }
   .dr-radio-item:active { transform: scale(0.96); }
   
   /* Input focus transition already set — add subtle scale on focus */
   .dr-field input:focus,
   .dr-field select:focus,
   .dr-field textarea:focus {
     transform: translateY(-1px);
     transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
   }
   
   /* Submit button */
   .dr-submit-btn {
     transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
   }
   .dr-submit-btn:hover {
     box-shadow: 0 4px 16px rgba(4,107,210,0.25);
   }
   .dr-submit-btn:active { transform: translateY(0) scale(0.98); }
   
   /* Success card pop in */
   .dr-success {
     animation: drSuccessIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
   }
   @keyframes drSuccessIn {
     from { opacity: 0; transform: scale(0.92); }
     to   { opacity: 1; transform: scale(1); }
   }
   
   /* Section title line grow */
   .dr-section-title::after {
     transition: width 0.4s ease;
   }
   
   /* File upload area */
   .dr-file-area {
     transition: border-color 0.2s, background 0.2s, transform 0.2s;
   }
   .dr-file-area:hover { transform: translateY(-2px); }
   
   /* Strip btn */
   .dr-strip-btn {
     transition: background 0.2s, transform 0.15s;
   }
   .dr-strip-btn:hover { transform: translateY(-1px); }
   .dr-strip-btn:active { transform: translateY(0); }
  /* =============================================
   STS 2026 — partners.css
   ============================================= */

:root { --green: #14B57B; }


/* ---- HERO ---- */
.pt-hero {
  background: var(--navy);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.pt-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pt-hero-text { flex: 1; min-width: 260px; }

.pt-hero-text .section-label {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pt-hero-text .section-label::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

.pt-hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.pt-hero-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
}

.pt-hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.pt-hero-btn:hover {
  background: #0f9a68;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero text animations */
.pt-hero-text .section-label { animation: fadeInUp 0.6s ease 0.1s both; }
.pt-hero-text h1             { animation: fadeInUp 0.6s ease 0.25s both; }
.pt-hero-text p              { animation: fadeInUp 0.6s ease 0.4s both; }

@media (max-width: 768px) {
  .pt-hero { padding: 56px 24px; }
  .pt-hero-inner { flex-direction: column; align-items: flex-start; }
  .pt-hero-btn { width: 100%; text-align: center; }
}


/* ---- EVENT STRIP ---- */
.pt-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  animation: fadeInUp 0.5s ease 0.6s both;
}

.pt-strip-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pt-strip-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pt-strip-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.pt-strip-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.pt-strip-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pt-strip .cd-sep { color: rgba(255,255,255,0.3); }

.pt-strip-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.pt-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

@media (max-width: 960px) { .pt-strip { padding: 18px 30px; flex-wrap: wrap; } }
@media (max-width: 640px) {
  .pt-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .pt-strip-timer { width: 100%; }
  .pt-strip-btn { width: 100%; text-align: center; padding: 12px; }
}


/* ---- PARTNERS GRID — Option 1: no cards, logos on light bg ---- */
.pt-grid-section {
  background: var(--light-bg);
  padding: 80px 60px;
}

.pt-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pt-grid-inner .section-label { color: var(--green); }

.pt-grid-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
}

.pt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 32px;
  align-items: center;
}

.pt-logo-card {
  background: none;
  border: none;
  border-radius: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  gap: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  /* border: 1px solid red; */
}

.pt-logo-card.visible { opacity: 1; transform: translateY(0); }

.pt-logo-card:hover { background: none; border-color: transparent; }

.pt-logo-card img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.25s;
}

.pt-logo-card:hover img {
  transform: translateY(-3px);
}


/* ---- Specific logo size overrides ---- */
.pt-logo-card img[alt="Golborne Road Advisory"] { height: 90px; }
.pt-logo-card img[alt="Kopek Construction Limited"] { height: 90px; }
.pt-logo-card img[alt="Legacy Serviced Offices"] { height: 90px; }
.pt-logo-card img[alt="The Temple Management Company"] { height: 90px; }
/* Hide the name labels — logos speak for themselves */
.pt-logo-card span { display: none; }

@media (max-width: 960px) {
  .pt-grid-section { padding: 60px 30px; }
  .pt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pt-grid-section { padding: 52px 20px; }
  .pt-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ---- BECOME A PARTNER ---- */
.pt-become {
  background: #fff;
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}

.pt-become-inner { max-width: 1200px; margin: 0 auto; }

.pt-become-header { margin-bottom: 56px; }

.pt-become-header .section-label { color: var(--green); }

.pt-become-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pt-become-intro {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 760px;
}

.pt-become-cols {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* WHY COL */
.pt-why-col { flex: 1; }

.pt-why-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.pt-why-list { display: flex; flex-direction: column; gap: 24px; }

.pt-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.pt-why-item.visible { opacity: 1; transform: translateX(0); }

.pt-why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 6px;
  flex-shrink: 0;
}

.pt-why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.pt-why-text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
}

/* FORM COL */
.pt-form-col { flex: 1; }

.pt-form-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.pt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pt-full { grid-column: 1 / -1; }

.pt-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pt-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
}

.pt-field input,
.pt-field select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.9rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pt-field input::placeholder { color: #b0bac5; }

.pt-field input:focus,
.pt-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4,107,210,0.08);
  transform: translateY(-1px);
}

.pt-field.error input,
.pt-field.error select { border-color: #d0392b; }

.pt-phone-row { display: flex; gap: 8px; }
.pt-phone-row select {
  width: 150px;
  flex-shrink: 0;
  padding: 11px 8px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.pt-phone-row select:focus { border-color: var(--blue); }
.pt-phone-row input { flex: 1; }

.pt-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.pt-submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(4,107,210,0.25);
}
.pt-submit-btn:active { transform: translateY(0) scale(0.98); }

.pt-success {
  display: none;
  background: #eaf3de;
  border: 1px solid #97c459;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  animation: ptSuccessIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes ptSuccessIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.pt-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #3b6d11;
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.pt-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #3b6d11;
  margin-bottom: 10px;
}

.pt-success p {
  font-size: 0.9rem;
  color: #3b6d11;
  line-height: 1.75;
}

@media (max-width: 960px) {
  .pt-become { padding: 60px 30px; }
  .pt-become-cols { flex-direction: column; gap: 48px; }
  .pt-form-grid { grid-template-columns: 1fr; }
  .pt-full { grid-column: 1; }
}
@media (max-width: 640px) {
  .pt-become { padding: 52px 20px; }
}

/* =============================================
   STS 2026 — speakers.css
   ============================================= */

   :root { --green: #14B57B; }


   /* ---- HERO ---- */
   .sp-hero {
     background: var(--navy);
     padding: 120px 60px 64px;
     position: relative;
     overflow: hidden;
   }
   
   .sp-hero::before {
     content: '';
     position: absolute;
     top: -80px; right: -80px;
     width: 420px; height: 420px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
     pointer-events: none;
   }
   
   .sp-hero-eyebrow {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.2em;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
     animation: fadeInUp 0.6s ease 0.1s both;
   }
   .sp-hero-eyebrow::after {
     content: '';
     flex: 0 0 32px;
     height: 1px;
     background: var(--green);
     opacity: 0.5;
   }
   
   .sp-hero-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(2.4rem, 5vw, 3.6rem);
     font-weight: 700;
     color: #fff;
     line-height: 1.15;
     margin-bottom: 20px;
     animation: fadeInUp 0.6s ease 0.25s both;
   }
   .sp-hero-title span { color: var(--green); font-style: italic; }
   
   .sp-hero-sub {
     font-size: 1rem;
     color: rgba(255,255,255,0.55);
     line-height: 1.8;
     max-width: 520px;
     animation: fadeInUp 0.6s ease 0.4s both;
   }
   
   @media (max-width: 768px) {
     .sp-hero { padding: 56px 24px 48px; }
     .sp-hero-title { font-size: 2.2rem; }
   }
   
   
   /* ---- EVENT STRIP ---- */
   .sp-strip {
     background: #0f1117;
     border-top: 3px solid var(--blue);
     padding: 18px 60px;
     display: flex;
     align-items: center;
     gap: 24px;
     flex-wrap: nowrap;
     animation: fadeInUp 0.5s ease 0.5s both;
   }
   .sp-strip-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
   .sp-strip-label { font-size: 10px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.18em; }
   .sp-strip-title { font-size: 0.9rem; font-weight: 500; color: #fff; line-height: 1.4; }
   .sp-strip-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
   .sp-strip-timer { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
   .sp-strip .cd-sep { color: rgba(255,255,255,0.3); }
   .sp-strip-btn {
     display: inline-block; padding: 9px 20px; background: var(--blue);
     color: #fff; text-decoration: none; font-weight: 600; font-size: 0.82rem;
     border-radius: 4px; white-space: nowrap; flex-shrink: 0;
     transition: background 0.2s, transform 0.15s;
   }
   .sp-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
   
   @media (max-width: 960px) { .sp-strip { padding: 18px 30px; flex-wrap: wrap; } }
   @media (max-width: 640px) {
     .sp-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
     .sp-strip-timer { width: 100%; }
     .sp-strip-btn { width: 100%; text-align: center; padding: 12px; }
   }
   
   
   /* ---- SHARED SECTION STYLES ---- */
   .sp-section-inner {
     max-width: 1200px;
     margin: 0 auto;
   }
   
   .sp-green-label { color: var(--green) !important; }
   
   .sp-section-inner h2 {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.8rem, 3vw, 2.4rem);
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 12px;
   }
   
   .sp-section-sub {
     font-size: 1rem;
     color: var(--slate);
     line-height: 1.7;
     margin-bottom: 40px;
     max-width: 560px;
   }
   
   
   /* ---- 2026 SECTION ---- */
   .sp-2026 {
     padding: 80px 60px;
     background: #fff;
   }
   
   .sp-coming-soon {
     display: flex;
     gap: 20px;
     align-items: flex-start;
     background: var(--light-bg);
     border-left: 4px solid var(--green);
     border-radius: 0 8px 8px 0;
     padding: 24px 28px;
     margin-bottom: 48px;
   }
   
   .sp-cs-icon {
     flex-shrink: 0;
     width: 28px;
     height: 28px;
     margin-top: 2px;
   }
   .sp-cs-icon svg { width: 100%; fill: var(--green); }
   
   .sp-cs-content { font-size: 0.92rem; color: var(--slate); line-height: 1.7; }
   .sp-cs-content strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 1rem; }
   .sp-cs-content a { color: var(--blue); text-decoration: underline; }
   
   /* Placeholder skeleton grid */
   .sp-placeholder-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 16px;
   }
   
   .sp-placeholder-card {
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid var(--border);
     background: var(--light-bg);
   }
   
   .sp-placeholder-photo {
     width: 100%;
     aspect-ratio: 1 / 1;
     background: var(--border);
   }
   
   .sp-placeholder-lines { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
   
   .sp-placeholder-line {
     height: 10px;
     background: var(--border);
     border-radius: 4px;
   }
   
   @media (max-width: 960px) {
     .sp-2026 { padding: 60px 30px; }
     .sp-placeholder-grid { grid-template-columns: repeat(3, 1fr); }
   }
   @media (max-width: 640px) {
     .sp-2026 { padding: 52px 20px; }
     .sp-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
   }
   
   
   /* ---- PAST SPEAKERS SECTION ---- */
   .sp-past {
     padding: 80px 60px;
     background: var(--light-bg);
   }
   
   /* Search */
   .sp-search-row {
     margin-bottom: 20px;
   }
   
   .sp-search-wrap {
     position: relative;
     max-width: 520px;
   }
   
   .sp-search-icon {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     width: 16px;
     height: 16px;
     fill: #94a3b8;
     pointer-events: none;
   }
   
   .sp-search-wrap input {
     width: 100%;
     padding: 12px 16px 12px 42px;
     border: 1.5px solid var(--border);
     border-radius: 8px;
     font-size: 0.9rem;
     color: var(--navy);
     background: #fff;
     outline: none;
     font-family: inherit;
     transition: border-color 0.2s, box-shadow 0.2s;
   }
   .sp-search-wrap input::placeholder { color: #94a3b8; }
   .sp-search-wrap input:focus {
     border-color: var(--blue);
     box-shadow: 0 0 0 3px rgba(4,107,210,0.08);
   }
   
   .sp-count {
     font-size: 0.85rem;
     color: var(--slate);
     margin-bottom: 32px;
   }
   .sp-count strong { color: var(--navy); }
   
   /* Speaker grid */
   .sp-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 16px;
   }
   
   /* Speaker card */
   .sp-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 12px;
     overflow: hidden;
     opacity: 0;
     transform: translateY(12px);
     transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.2s, border-color 0.2s;
   }
   
   .sp-card.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   .sp-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 28px rgba(0,0,0,0.09);
     border-color: var(--blue);
   }
   
   /* Avatar — photo or initials */
   .sp-avatar--photo {
     background: var(--border) !important;
     overflow: hidden;
   }

   .sp-avatar--photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     display: block;
   }

   /* Avatar — coloured initials */
   .sp-avatar {
     width: 100%;
     aspect-ratio: 1 / 1;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     font-weight: 700;
     font-family: 'Playfair Display', Georgia, serif;
     letter-spacing: 0.02em;
   }
   
   /* 6 colour variants cycling */
   .sp-av-0 { background: #EFF6FF; color: #1e3a5f; }
   .sp-av-1 { background: #f0fdf4; color: #14532d; }
   .sp-av-2 { background: #fdf4ff; color: #581c87; }
   .sp-av-3 { background: #fff7ed; color: #7c2d12; }
   .sp-av-4 { background: #f0f5fa; color: #1e293b; }
   .sp-av-5 { background: #fef2f2; color: #7f1d1d; }
   
   .sp-card-info {
     padding: 14px 12px;
     border-top: 1px solid var(--border);
   }
   
   .sp-card-name {
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--navy);
     line-height: 1.35;
     margin-bottom: 4px;
   }
   
   .sp-card-title {
     font-size: 0.75rem;
     color: var(--green);
     line-height: 1.4;
     margin-bottom: 3px;
   }
   
   .sp-card-org {
     font-size: 0.73rem;
     color: var(--slate);
     line-height: 1.4;
   }
   
   /* No results */
   .sp-no-results {
     text-align: center;
     padding: 64px 24px;
     color: var(--slate);
     font-size: 0.95rem;
   }
   
   @media (max-width: 1100px) { .sp-grid { grid-template-columns: repeat(4, 1fr); } }
   @media (max-width: 960px) {
     .sp-past { padding: 60px 30px; }
     .sp-grid { grid-template-columns: repeat(3, 1fr); }
   }
   @media (max-width: 640px) {
     .sp-past { padding: 52px 20px; }
     .sp-grid { grid-template-columns: repeat(2, 1fr); }
   }
   @media (max-width: 400px) {
     .sp-grid { grid-template-columns: 1fr; }
   }

   /* =============================================
   STS 2026 — past-events.css
   ============================================= */

:root { --green: #14B57B; }


/* ---- HERO ---- */
.pe-hero {
  background: var(--navy);
  padding: 120px 60px 64px;
  position: relative;
  overflow: hidden;
}

.pe-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pe-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.pe-hero-eyebrow::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

.pe-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.25s both;
}

.pe-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

@media (max-width: 768px) {
  .pe-hero { padding: 56px 24px 48px; }
  .pe-hero-title { font-size: 2.4rem; }
}


/* ---- EVENT STRIP ---- */
.pe-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  animation: fadeInUp 0.5s ease 0.5s both;
}

.pe-strip-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pe-strip-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pe-strip-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.pe-strip-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.pe-strip-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pe-strip .cd-sep { color: rgba(255,255,255,0.3); }

.pe-strip-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.pe-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

@media (max-width: 960px) { .pe-strip { padding: 18px 30px; flex-wrap: wrap; } }
@media (max-width: 640px) {
  .pe-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .pe-strip-timer { width: 100%; }
  .pe-strip-btn { width: 100%; text-align: center; padding: 12px; }
}


/* ---- GRID SECTION ---- */
.pe-grid-section {
  padding: 80px 60px;
  background: var(--light-bg);
}

.pe-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pe-green-label { color: var(--green) !important; }

.pe-grid-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

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

@media (max-width: 900px) { .pe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .pe-grid-section { padding: 52px 20px; }
  .pe-grid { grid-template-columns: 1fr; }
}


/* ---- EDITION CARD ---- */
.pe-card {
  min-height: 380px;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

/* Per-edition background colours */
.pe-card--2025 { background: #1e293b; }
.pe-card--2024 { background: #1a4034; }
.pe-card--2023 { background: #2d1b1b; }
.pe-card--2022 { background: #2d1f0a; }
.pe-card--2021 { background: #0f2d24; }
.pe-card--2020 { background: #0a2240; }
.pe-card--2019 { background: #1a1640; }
.pe-card--2018 { background: #1a3020; }
.pe-card--2016 { background: #2a2a28; }

.pe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: opacity 0.25s;
}

.pe-card:hover .pe-card-overlay { opacity: 0.8; }

.pe-card-content {
  position: relative;
  z-index: 1;
}

.pe-edition {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.pe-sdg-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pe-sdg {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pe-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.pe-theme {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pe-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.pe-card:hover .pe-btn {
  background: var(--green);
  border-color: var(--green);
}

@media (max-width: 640px) {
  .pe-card { min-height: 300px; padding: 24px 20px; }
}

/* =============================================
   STS 2026 — edition.css
   Shared styles for all individual edition pages
   ============================================= */

   :root { --green: #14B57B; }

   /* ---- BACK LINK ---- */
   .ed-back {
     background: var(--navy);
     padding: 12px 60px;
     border-bottom: 2px solid var(--green);
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   .ed-back a {
     font-size: 0.8rem;
     font-weight: 500;
     color: rgba(255,255,255,0.6);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     transition: color 0.2s, gap 0.2s;
   }
   .ed-back a:hover { color: var(--green); gap: 10px; }
   .ed-back-center {
     font-size: 11px;
     font-weight: 500;
     color: rgba(255,255,255,0.3);
     text-transform: uppercase;
     letter-spacing: 0.12em;
   }
   
   @media (max-width: 768px) { .ed-back { padding: 14px 24px; } }
   
   

   /* ---- EDITION PREV/NEXT NAV BAR ---- */
   .ed-nav-bar {
     background: var(--navy);
     padding: 13px 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 2px solid var(--green);
   }

   /* Sticky ed-nav-bar is pinned 80px down from the very first frame,
      leaving nothing behind the transparent fixed header except blank
      page background. This fills that gap with the same navy so the
      header tints navy (matching the dark hero look) instead of grey. */
   .ed-nav-bar::before {
     content: "";
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     height: 80px;
     background: var(--navy);
     z-index: 9998;
   }

   .ed-nav-back,
   .ed-nav-next {
     font-size: 0.78rem;
     font-weight: 600;
     color: rgba(255,255,255,0.55);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     transition: color 0.2s, gap 0.2s;
     padding: 4px 0;
   }
   .ed-nav-back:hover { color: var(--green); gap: 10px; }
   .ed-nav-next:hover { color: var(--green); gap: 10px; }

   .ed-nav-center {
     font-size: 11px;
     font-weight: 500;
     color: rgba(255,255,255,0.3);
     text-transform: uppercase;
     letter-spacing: 0.14em;
   }

   @media (max-width: 768px) {
     .ed-nav-bar { padding: 12px 20px; }
     .ed-nav-center { display: none; }
   }

   /* ---- HERO ---- */
   .ed-hero {
     min-height: 420px;
     padding: 80px 80px 56px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     position: relative;
     overflow: hidden;
   }
   
   .ed-hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
   }
   
   .ed-hero-content { position: relative; z-index: 1; }
   
   .ed-edition-label {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.16em;
     margin-bottom: 10px;
     animation: fadeInUp 0.5s ease 0.1s both;
   }
   
   .ed-sdg-row {
     display: flex;
     gap: 5px;
     flex-wrap: wrap;
     margin-bottom: 14px;
     animation: fadeInUp 0.5s ease 0.2s both;
   }
   
   .ed-sdg {
     width: 26px;
     height: 26px;
     border-radius: 3px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     font-weight: 800;
     color: #fff;
     line-height: 1;
   }
   
   .ed-hero-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.5rem, 3.5vw, 2.4rem);
     font-weight: 700;
     color: #fff;
     line-height: 1.25;
     max-width: 720px;
     margin-bottom: 20px;
     animation: fadeInUp 0.5s ease 0.3s both;
   }
   
   .ed-hero-meta {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     animation: fadeInUp 0.5s ease 0.4s both;
   }
   
   .ed-hero-meta-item {
     font-size: 0.85rem;
     color: rgba(255,255,255,0.65);
     display: flex;
     align-items: center;
     gap: 6px;
   }
   
   @media (max-width: 768px) {
     .ed-hero { padding: 48px 24px 40px; min-height: 300px; }
   }
   
   
   /* ---- EVENT STRIP ---- */
   .ed-strip {
     background: #0f1117;
     border-top: 3px solid var(--blue);
     padding: 16px 60px;
     display: flex;
     align-items: center;
     gap: 24px;
     flex-wrap: nowrap;
   }
   .ed-strip-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
   .ed-strip-label { font-size: 10px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.18em; }
   .ed-strip-title { font-size: 0.88rem; font-weight: 500; color: #fff; line-height: 1.4; }
   .ed-strip-date { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
   .ed-strip-timer { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
   .ed-strip .cd-sep { color: rgba(255,255,255,0.3); }
   .ed-strip-btn {
     display: inline-block; padding: 8px 18px; background: var(--blue);
     color: #fff; text-decoration: none; font-weight: 600; font-size: 0.8rem;
     border-radius: 4px; white-space: nowrap; flex-shrink: 0;
     transition: background 0.2s, transform 0.15s;
   }
   .ed-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
   
   @media (max-width: 960px) { .ed-strip { padding: 16px 30px; flex-wrap: wrap; } }
   @media (max-width: 640px) {
     .ed-strip { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
     .ed-strip-timer { width: 100%; }
     .ed-strip-btn { width: 100%; text-align: center; padding: 11px; }
   }
   
   
   /* ---- SHARED SECTION ---- */
   .ed-section {
     padding: 64px 60px;
     background: #fff;
   }
   .ed-section.alt { background: var(--light-bg); }
   
   .ed-section-inner { max-width: 1100px; margin: 0 auto; }
   
   .ed-section-label {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.14em;
     margin-bottom: 8px;
     display: block;
   }
   
   .ed-section-heading {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.6rem, 3vw, 2.2rem);
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 32px;
   }
   
   @media (max-width: 768px) {
     .ed-section { padding: 48px 24px; }
   }
   
   
   /* ---- STATS BAR ---- */
   .ed-stats {
     display: flex;
     border: 1px solid var(--border);
     border-radius: 10px;
     overflow: hidden;
     background: #fff;
     margin-bottom: 0;
   }
   
   .ed-stat {
     flex: 1;
     padding: 24px 20px;
     text-align: center;
     border-right: 1px solid var(--border);
   }
   .ed-stat:last-child { border-right: none; }
   
   .ed-stat-num {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 2rem;
     font-weight: 700;
     color: var(--navy);
     line-height: 1;
     display: block;
     margin-bottom: 6px;
   }
   
   .ed-stat-label {
     font-size: 10px;
     font-weight: 500;
     color: var(--slate);
     text-transform: uppercase;
     letter-spacing: 0.1em;
   }
   
   @media (max-width: 640px) {
     .ed-stats { flex-wrap: wrap; }
     .ed-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
     .ed-stat:nth-child(even) { border-right: none; }
   }
   
   
   /* ---- ABOUT / SUMMARY ---- */
   .ed-summary p {
     font-size: 1rem;
     color: var(--slate);
     line-height: 1.85;
     margin-bottom: 20px;
     max-width: 820px;
   }
   .ed-summary p:last-child { margin-bottom: 0; }
   
   
   /* ---- KEY TOPICS ---- */
   .ed-topics-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 12px;
   }
   
   .ed-topic-card {
     background: #fff;
     border: 0.5px solid var(--border);
     border-left: 3px solid var(--green);
     border-radius: 0 8px 8px 0;
     padding: 16px 18px;
     display: flex;
     gap: 12px;
     align-items: flex-start;
     transition: transform 0.2s, box-shadow 0.2s;
   }
   .ed-topic-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
   
   .ed-topic-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--green);
     margin-top: 6px;
     flex-shrink: 0;
   }
   
   .ed-topic-card p {
     font-size: 0.9rem;
     color: var(--slate);
     line-height: 1.6;
     margin: 0;
   }
   
   @media (max-width: 640px) {
     .ed-topics-grid { grid-template-columns: 1fr; }
   }
   
   
   /* ---- SPEAKERS ---- */
   .ed-speakers-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 14px;
   }
   
   .ed-sp-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 10px;
     overflow: hidden;
     transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
     opacity: 1;
     transform: translateY(0);
   }
   /* Cards no longer depend on JS to become visible — if the reveal
      script runs, .visible just reinforces the same end state. */
   .ed-sp-card.visible {
     opacity: 1;
     transform: translateY(0);
     transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s, border-color 0.2s;
   }
   .ed-sp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); border-color: var(--blue); }
   
   .ed-sp-avatar {
     width: 100%;
     aspect-ratio: 1 / 1;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     font-weight: 700;
     font-family: 'Playfair Display', Georgia, serif;
   }
   img.ed-sp-avatar {
     display: block;
     object-fit: cover;
     object-position: center top;
   }
   .ed-av-0 { background: #EFF6FF; color: #1e3a5f; }
   .ed-av-1 { background: #f0fdf4; color: #14532d; }
   .ed-av-2 { background: #fdf4ff; color: #581c87; }
   .ed-av-3 { background: #fff7ed; color: #7c2d12; }
   .ed-av-4 { background: #f0f5fa; color: #1e293b; }
   .ed-av-5 { background: #fef2f2; color: #7f1d1d; }
   
   .ed-sp-info {
     padding: 10px 10px 12px;
     border-top: 1px solid var(--border);
   }
   .ed-sp-name { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
   .ed-sp-title { font-size: 0.72rem; color: var(--green); line-height: 1.4; margin-bottom: 2px; }
   .ed-sp-org { font-size: 0.7rem; color: var(--slate); line-height: 1.3; }
   
   @media (max-width: 1100px) { .ed-speakers-grid { grid-template-columns: repeat(4, 1fr); } }
   @media (max-width: 768px)  { .ed-speakers-grid { grid-template-columns: repeat(3, 1fr); } }
   @media (max-width: 500px)  { .ed-speakers-grid { grid-template-columns: repeat(2, 1fr); } }
   
   
   /* ---- SPONSORS ---- */
   .ed-sponsors-list {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     align-items: center;
   }
   
   .ed-sponsor-pill {
     padding: 8px 18px;
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 20px;
     font-size: 0.85rem;
     color: var(--slate);
     font-weight: 500;
     transition: border-color 0.2s, color 0.2s;
   }
   .ed-sponsor-pill:hover { border-color: var(--blue); color: var(--navy); }
   
   
   /* ---- GALLERY ---- */
   .ed-gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
   }
   
   .ed-gallery-item {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     background: var(--border);
     aspect-ratio: 4/3;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--slate);
     font-size: 0.85rem;
     cursor: pointer;
     border: none;
     padding: 0;
     width: 100%;
   }
   
   .ed-gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
   .ed-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s ease; }
   .ed-gallery-item:hover img { transform: scale(1.04); }

   .ed-gallery-fallback {
     position: absolute;
     inset: 0;
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 6px;
     background: #eceae4;
     color: var(--slate);
   }
   .ed-gallery-fallback svg { width: 24px; height: 24px; fill: var(--slate); }
   .ed-gallery-fallback span { font-size: 11px; letter-spacing: 0.02em; }

   .ed-gallery-more {
     position: absolute;
     inset: 0;
     background: rgba(30, 41, 59, 0.62);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 0.01em;
     pointer-events: none;
   }
   
   @media (max-width: 640px) {
     .ed-gallery-grid { grid-template-columns: repeat(2, 1fr); }
     .ed-gallery-item.tall { aspect-ratio: 4/3; grid-row: span 1; }
   }

   /* ---- LIGHTBOX ---- */
   .ed-lightbox {
     position: fixed;
     inset: 0;
     background: rgba(30, 41, 59, 0.92);
     z-index: 999;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 40px;
   }
   .ed-lightbox.is-open { display: flex; }
   .ed-lightbox-figure {
     position: relative;
     max-width: 900px;
     max-height: 84vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .ed-lightbox-figure img {
     max-width: 100%;
     max-height: 84vh;
     border-radius: 6px;
     display: block;
     object-fit: contain;
   }
   .ed-lightbox-fallback {
     display: none;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 10px;
     color: #cfcdc6;
     width: 480px;
     max-width: 80vw;
     aspect-ratio: 4/3;
     background: var(--navy);
     border-radius: 6px;
   }
   .ed-lightbox-fallback svg { width: 40px; height: 40px; fill: #cfcdc6; }
   .ed-lightbox-fallback span { font-size: 13px; }
   .ed-lightbox-close,
   .ed-lightbox-prev,
   .ed-lightbox-next {
     position: fixed;
     background: rgba(255,255,255,0.08);
     border: none;
     color: #fff;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
   }
   .ed-lightbox-close:hover,
   .ed-lightbox-prev:hover,
   .ed-lightbox-next:hover { background: var(--green); }
   .ed-lightbox-close { top: 24px; right: 24px; }
   .ed-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
   .ed-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
   .ed-lightbox-close svg,
   .ed-lightbox-prev svg,
   .ed-lightbox-next svg { width: 18px; height: 18px; fill: #fff; }
   .ed-lightbox-counter {
     position: fixed;
     bottom: 24px;
     left: 50%;
     transform: translateX(-50%);
     color: rgba(255,255,255,0.7);
     font-size: 12px;
     letter-spacing: 0.05em;
   }
   @media (max-width: 640px) {
     .ed-lightbox { padding: 16px; }
     .ed-lightbox-prev { left: 8px; }
     .ed-lightbox-next { right: 8px; }
     .ed-lightbox-close { top: 12px; right: 12px; }
   }

   /* ---- SPONSORS GRID (logo tiles) ---- */
   .ed-sponsors-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 14px;
   }
   .ed-sponsor-cell {
     background: #fff;
     border-radius: 10px;
     height: 92px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 16px;
     transition: box-shadow 0.2s;
   }
   .ed-sponsor-cell:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
   .ed-sponsor-cell img {
     width: 100%;
     height: 100%;
     object-fit: contain;
   }
   .ed-sponsor-name {
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--slate);
     text-align: center;
     line-height: 1.3;
   }
   @media (max-width: 1100px) { .ed-sponsors-grid { grid-template-columns: repeat(4, 1fr); } }
   @media (max-width: 768px)  { .ed-sponsors-grid { grid-template-columns: repeat(3, 1fr); } }
   @media (max-width: 500px)  { .ed-sponsors-grid { grid-template-columns: repeat(2, 1fr); } }
   
   
   /* ---- NAVIGATION BETWEEN EDITIONS ---- */
   .ed-edition-nav {
     background: var(--navy);
     border-top: 2px solid var(--green);
     padding: 32px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 24px;
   }
   
   .ed-edition-nav-link {
     display: flex;
     flex-direction: column;
     gap: 4px;
     text-decoration: none;
     max-width: 280px;
   }
   .ed-edition-nav-link.right { align-items: flex-end; text-align: right; margin-left: auto; }
   
   .ed-edition-nav-dir {
     font-size: 10px;
     font-weight: 500;
     color: rgba(255,255,255,0.4);
     text-transform: uppercase;
     letter-spacing: 0.12em;
   }
   .ed-edition-nav-year {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 1.4rem;
     font-weight: 700;
     color: #fff;
   }
   .ed-edition-nav-theme {
     font-size: 0.8rem;
     color: rgba(255,255,255,0.5);
     line-height: 1.4;
   }
   .ed-edition-nav-link:hover .ed-edition-nav-year { color: var(--green); }
   .ed-edition-nav-link:hover .ed-edition-nav-dir { color: var(--green); }
   
   @media (max-width: 640px) {
     .ed-edition-nav { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
     .ed-edition-nav-link.right { align-items: flex-start; text-align: left; margin-left: 0; }
   }

   /* =============================================
   STS 2026 — publications.css
   ============================================= */

:root { --green: #14B57B; }


/* ---- HERO ---- */
.pub-hero {
  background: var(--navy);
  padding: 120px 60px 64px;
  position: relative;
  overflow: hidden;
}

.pub-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pub-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.pub-hero-eyebrow::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

.pub-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.25s both;
}

.pub-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

@media (max-width: 768px) {
  .pub-hero { padding: 56px 24px 48px; }
  .pub-hero-title { font-size: 2.2rem; }
}


/* ---- TABS BAR ---- */
.pub-tabs-bar {
  background: #0f1117;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 60px;
  display: flex;
  gap: 0;
}

.pub-tab {
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
}

.pub-tab:hover { color: rgba(255,255,255,0.7); }
.pub-tab.active { color: #fff; border-bottom-color: var(--green); }

@media (max-width: 640px) {
  .pub-tabs-bar { padding: 0 20px; }
  .pub-tab { padding: 16px 20px; font-size: 11px; }
}


/* ---- PANELS ---- */
.pub-panel[hidden] { display: none; }


/* ---- SHARED SECTION STYLES ---- */
.pub-section {
  padding: 120px 60px;
  background: #fff;
}

.pub-section--alt { background: var(--light-bg); }

.pub-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pub-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  display: block;
}

.pub-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pub-section-sub {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .pub-section { padding: 52px 24px; }
}


/* ---- COMING SOON BANNER ---- */
.pub-coming-soon {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
}

.pub-cs-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}
.pub-cs-icon svg { width: 100%; fill: var(--green); }

.pub-cs-content {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
}

.pub-cs-content strong {
  color: var(--navy);
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.pub-cs-content a { color: var(--blue); text-decoration: underline; }


/* ---- STATS BAR ---- */
.pub-stats-bar {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.pub-stat {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.pub-stat:last-child { border-right: none; }

.pub-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.pub-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .pub-stats-bar { flex-wrap: wrap; }
  .pub-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .pub-stat:nth-child(even) { border-right: none; }
}


/* ---- POLICY GRID ---- */
.pub-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pub-policy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pub-policy-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }

.pub-policy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pub-policy-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
  font-family: 'Playfair Display', Georgia, serif;
}

.pub-policy-sdg {
  flex-shrink: 0;
}

.pub-policy-sdg img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.pub-policy-timeline {
  font-size: 12px;
  color: var(--slate);
}

.pub-policy-timeline strong { color: var(--navy); }
.pub-policy-timeline span { color: var(--green); font-weight: 600; }

.pub-policy-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .pub-policy-grid { grid-template-columns: 1fr; }
}


/* ---- PROGRAMMES GRID ---- */
.pub-programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pub-programme-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pub-programme-icon { font-size: 2rem; }

.pub-programme-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.pub-programme-body p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .pub-programmes-grid { grid-template-columns: 1fr; }
}


/* ---- IMPACT HEADING ---- */
.pub-impact-heading {
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}


/* ---- HACKATHON IMPACT GRID ---- */
.pub-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pub-impact-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pub-impact-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: block;
}

.pub-impact-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pub-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pub-impact-grid { grid-template-columns: 1fr; }
}


/* ---- MONOGRAPH LIST ---- */
.pub-monograph-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pub-monograph-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pub-monograph-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border-color: var(--blue);
}

.pub-monograph-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  min-width: 36px;
  line-height: 1;
}

.pub-monograph-body { flex: 1; min-width: 0; }

.pub-monograph-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
  font-family: 'Playfair Display', Georgia, serif;
}

.pub-monograph-edition {
  font-size: 0.78rem;
  color: var(--slate);
}

.pub-monograph-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--light-bg);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pub-monograph-item { flex-wrap: wrap; gap: 12px; }
  .pub-monograph-tag { margin-left: 56px; }
}


/* ---- MONOGRAPH NOTE ---- */
.pub-monograph-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(4,107,210,0.05);
  border: 1px solid rgba(4,107,210,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--slate);
}

.pub-monograph-note svg {
  width: 18px;
  height: 18px;
  fill: var(--blue);
  flex-shrink: 0;
}

.pub-monograph-note a { color: var(--blue); text-decoration: underline; }


/* ---- EVENT STRIP ---- */
.pub-strip {
  background: #0f1117;
  border-top: 3px solid var(--blue);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.pub-strip-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pub-strip-label { font-size: 10px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.18em; }
.pub-strip-title { font-size: 0.9rem; font-weight: 500; color: #fff; line-height: 1.4; }
.pub-strip-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.pub-strip-timer { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.pub-strip .cd-sep { color: rgba(255,255,255,0.3); }

.pub-strip-btn {
  display: inline-block; padding: 9px 20px; background: var(--blue);
  color: #fff; text-decoration: none; font-weight: 600; font-size: 0.82rem;
  border-radius: 4px; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.pub-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }

@media (max-width: 960px) { .pub-strip { padding: 18px 30px; flex-wrap: wrap; } }
@media (max-width: 640px) {
  .pub-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .pub-strip-timer { width: 100%; }
  .pub-strip-btn { width: 100%; text-align: center; padding: 12px; }
}

/* =============================================
   STS 2026 — press.css
   ============================================= */

   :root { --green: #14B57B; }


   /* ---- HERO ---- */
   .pr-hero {
     background: var(--navy);
     padding: 120px 60px 64px;
     position: relative;
     overflow: hidden;
   }
   
   .pr-hero::before {
     content: '';
     position: absolute;
     top: -80px; right: -80px;
     width: 420px; height: 420px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
     pointer-events: none;
   }
   
   .pr-hero-eyebrow {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.2em;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
     animation: fadeInUp 0.6s ease 0.1s both;
   }
   .pr-hero-eyebrow::after {
     content: '';
     flex: 0 0 32px;
     height: 1px;
     background: var(--green);
     opacity: 0.5;
   }
   
   .pr-hero-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(2.4rem, 5vw, 3.6rem);
     font-weight: 700;
     color: #fff;
     line-height: 1.1;
     margin-bottom: 20px;
     animation: fadeInUp 0.6s ease 0.25s both;
   }
   
   .pr-hero-sub {
     font-size: 1rem;
     color: rgba(255,255,255,0.55);
     line-height: 1.8;
     max-width: 520px;
     animation: fadeInUp 0.6s ease 0.4s both;
   }
   
   @media (max-width: 768px) {
     .pr-hero { padding: 56px 24px 48px; }
     .pr-hero-title { font-size: 2.2rem; }
   }
   
   
   /* ---- EVENT STRIP ---- */
   .pr-strip {
     background: #0f1117;
     border-top: 3px solid var(--blue);
     padding: 18px 60px;
     display: flex;
     align-items: center;
     gap: 24px;
     flex-wrap: nowrap;
     animation: fadeInUp 0.5s ease 0.5s both;
   }
   
   .pr-strip-left {
     flex: 1; min-width: 0;
     display: flex; flex-direction: column; gap: 3px;
   }
   
   .pr-strip-label {
     font-size: 10px; font-weight: 600;
     color: var(--green); text-transform: uppercase; letter-spacing: 0.18em;
   }
   
   .pr-strip-title {
     font-size: 0.9rem; font-weight: 500; color: #fff; line-height: 1.4;
   }
   
   .pr-strip-date {
     font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px;
   }
   
   .pr-strip-timer {
     display: flex; align-items: center; gap: 6px; flex-shrink: 0;
   }
   
   .pr-strip .cd-sep { color: rgba(255,255,255,0.3); }
   
   .pr-strip-btn {
     display: inline-block; padding: 9px 20px; background: var(--blue);
     color: #fff; text-decoration: none; font-weight: 600; font-size: 0.82rem;
     border-radius: 4px; white-space: nowrap; flex-shrink: 0;
     transition: background 0.2s, transform 0.15s;
   }
   .pr-strip-btn:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
   
   @media (max-width: 960px) { .pr-strip { padding: 18px 30px; flex-wrap: wrap; } }
   @media (max-width: 640px) {
     .pr-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
     .pr-strip-timer { width: 100%; }
     .pr-strip-btn { width: 100%; text-align: center; padding: 12px; }
   }
   
   
   /* ---- PRESS SECTION ---- */
   .pr-section {
     padding: 80px 60px;
     background: var(--light-bg);
   }
   
   .pr-inner {
     max-width: 1200px;
     margin: 0 auto;
   }
   
   .pr-green-label { color: var(--green) !important; }
   
   .pr-inner h2 {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.8rem, 3vw, 2.4rem);
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 48px;
   }
   
   
   /* ---- PRESS GRID ---- */
   .pr-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
   }
   
   .pr-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 10px;
     padding: 28px 24px;
     display: flex;
     flex-direction: column;
     gap: 14px;
     text-decoration: none;
     transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
   }
   
   .pr-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 36px rgba(0,0,0,0.09);
     border-color: var(--blue);
   }
   
   
   /* Outlet badge */
   .pr-outlet {
     display: flex;
     align-items: center;
     gap: 8px;
   }
   
   .pr-outlet-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--green);
     flex-shrink: 0;
   }
   
   .pr-outlet-name {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.1em;
   }
   
   /* Headline */
   .pr-headline {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 1rem;
     font-weight: 600;
     color: var(--navy);
     line-height: 1.5;
     flex: 1;
     margin: 0;
   }
   
   /* Meta row */
   .pr-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 4px;
   }
   
   .pr-year {
     font-size: 12px;
     font-weight: 500;
     color: #94a3b8;
     background: var(--light-bg);
     padding: 3px 10px;
     border-radius: 20px;
   }
   
   .pr-read {
     font-size: 12px;
     font-weight: 600;
     color: var(--blue);
     transition: gap 0.2s;
   }
   
   .pr-card:hover .pr-read { color: var(--blue-dark); }
   
   
   /* Responsive */
   @media (max-width: 960px) {
     .pr-section { padding: 60px 30px; }
     .pr-grid { grid-template-columns: repeat(2, 1fr); }
   }
   
   @media (max-width: 560px) {
     .pr-section { padding: 52px 20px; }
     .pr-grid { grid-template-columns: 1fr; }
   }

/* =============================================
   STS 2026 — contact.css
   ============================================= */

   :root { --green: #14B57B; }


   /* ---- HERO ---- */
   .ct-hero {
     background: var(--navy);
     padding: 120px 60px 64px;
     position: relative;
     overflow: hidden;
   }
   
   .ct-hero::before {
     content: '';
     position: absolute;
     top: -80px; right: -80px;
     width: 420px; height: 420px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(20,181,123,0.07) 0%, transparent 70%);
     pointer-events: none;
   }
   
   .ct-hero-eyebrow {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.2em;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
     animation: fadeInUp 0.6s ease 0.1s both;
   }
   .ct-hero-eyebrow::after {
     content: '';
     flex: 0 0 32px;
     height: 1px;
     background: var(--green);
     opacity: 0.5;
   }
   
   .ct-hero-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(2.4rem, 5vw, 3.6rem);
     font-weight: 700;
     color: #fff;
     line-height: 1.1;
     margin-bottom: 20px;
     animation: fadeInUp 0.6s ease 0.25s both;
   }
   
   .ct-hero-sub {
     font-size: 1rem;
     color: rgba(255,255,255,0.55);
     line-height: 1.8;
     max-width: 520px;
     animation: fadeInUp 0.6s ease 0.4s both;
   }
   
   @media (max-width: 768px) {
     .ct-hero { padding: 56px 24px 48px; }
     .ct-hero-title { font-size: 2.2rem; }
   }
   
   
   /* ---- BODY ---- */
   .ct-body {
     padding: 80px 60px;
     background: #fff;
   }
   
   .ct-body-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1.8fr;
     gap: 80px;
     align-items: start;
   }
   
   @media (max-width: 900px) {
     .ct-body { padding: 60px 30px; }
     .ct-body-inner { grid-template-columns: 1fr; gap: 52px; }
   }
   @media (max-width: 640px) { .ct-body { padding: 52px 20px; } }
   
   
   /* ---- LEFT — contact details ---- */
   .ct-section-label {
     font-size: 11px;
     font-weight: 600;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.14em;
     margin-bottom: 10px;
     display: block;
   }
   
   .ct-details-heading {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(1.6rem, 3vw, 2rem);
     font-weight: 700;
     color: var(--navy);
     line-height: 1.3;
     margin-bottom: 18px;
   }
   
   .ct-details-text {
     font-size: 0.95rem;
     color: var(--slate);
     line-height: 1.85;
     margin-bottom: 48px;
   }
   
   .ct-detail-list {
     display: flex;
     flex-direction: column;
     gap: 28px;
   }
   
   .ct-detail-item {
     display: flex;
     flex-direction: column;
     gap: 4px;
     padding-bottom: 28px;
     border-bottom: 1px solid var(--border);
   }
   .ct-detail-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
   }
   
   .ct-detail-label {
     font-size: 10px;
     font-weight: 700;
     color: var(--green);
     text-transform: uppercase;
     letter-spacing: 0.14em;
   }
   
   .ct-detail-value {
     font-size: 0.95rem;
     color: var(--navy);
     font-weight: 400;
     line-height: 1.5;
   }
   
   .ct-detail-value a {
     color: var(--navy);
     text-decoration: none;
     border-bottom: 1px solid var(--border);
     padding-bottom: 1px;
     transition: border-color 0.2s, color 0.2s;
   }
   .ct-detail-value a:hover {
     color: var(--green);
     border-color: var(--green);
   }
   
   
   /* ---- RIGHT — form ---- */
   .ct-form-wrap {
     background: var(--light-bg);
     border-radius: 12px;
     padding: 48px;
     border: 1px solid var(--border);
   }
   
   .ct-form-heading {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 6px;
   }
   
   .ct-form-sub {
     font-size: 0.875rem;
     color: var(--slate);
     margin-bottom: 36px;
     line-height: 1.6;
   }
   
   .ct-form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-bottom: 20px;
   }
   
   .ct-field {
     display: flex;
     flex-direction: column;
     gap: 7px;
     margin-bottom: 20px;
   }
   .ct-field:last-of-type { margin-bottom: 0; }
   
   .ct-label {
     font-size: 11px;
     font-weight: 600;
     color: var(--navy);
     text-transform: uppercase;
     letter-spacing: 0.08em;
   }
   
   .ct-input {
     padding: 14px 16px;
     border: 1.5px solid var(--border);
     border-radius: 6px;
     font-size: 0.95rem;
     color: var(--navy);
     background: #fff;
     outline: none;
     font-family: inherit;
     transition: border-color 0.2s, box-shadow 0.2s;
     width: 100%;
   }
   .ct-input::placeholder { color: #94a3b8; }
   .ct-input:focus {
     border-color: var(--green);
     box-shadow: 0 0 0 3px rgba(20,181,123,0.1);
   }
   
   textarea.ct-input {
     min-height: 140px;
     resize: vertical;
   }
   
   .ct-submit {
     width: 100%;
     padding: 16px;
     background: var(--green);
     color: #fff;
     border: none;
     border-radius: 6px;
     font-size: 0.95rem;
     font-weight: 600;
     cursor: pointer;
     font-family: inherit;
     margin-top: 8px;
     letter-spacing: 0.03em;
     transition: background 0.2s, transform 0.15s;
   }
   .ct-submit:hover {
     background: #0fa068;
     transform: translateY(-1px);
   }
   
   .ct-success {
     background: #fff;
     border-left: 4px solid var(--green);
     border-radius: 0 8px 8px 0;
     padding: 24px 28px;
     margin-top: 24px;
   }
   .ct-success[hidden] { display: none; }
   
   .ct-success strong {
     display: block;
     font-family: 'Playfair Display', Georgia, serif;
     font-size: 1rem;
     font-weight: 600;
     color: var(--navy);
     margin-bottom: 8px;
   }
   
   .ct-success p {
     font-size: 0.875rem;
     color: var(--slate);
     line-height: 1.7;
     margin: 0;
   }
   
   @media (max-width: 640px) {
     .ct-form-wrap { padding: 28px 20px; }
     .ct-form-row { grid-template-columns: 1fr; gap: 0; }
   }
   
   
   /* ---- EVENT STRIP ---- */
   .ct-strip {
     background: #0f1117;
     border-top: 3px solid var(--blue);
     padding: 18px 60px;
     display: flex;
     align-items: center;
     gap: 24px;
     flex-wrap: nowrap;
   }
   .ct-strip-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
   .ct-strip-label { font-size: 10px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.18em; }
   .ct-strip-title { font-size: 0.9rem; font-weight: 500; color: #fff; line-height: 1.4; }
   .ct-strip-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
   .ct-strip-timer { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
   .ct-strip .cd-sep { color: rgba(255,255,255,0.3); }
   .ct-strip-btn {
     display: inline-block; padding: 9px 20px; background: var(--green);
     color: #fff; text-decoration: none; font-weight: 600; font-size: 0.82rem;
     border-radius: 4px; white-space: nowrap; flex-shrink: 0;
     transition: background 0.2s, transform 0.15s;
   }
   .ct-strip-btn:hover { background: #0fa068; color: #fff; transform: translateY(-1px); }
   
   @media (max-width: 960px) { .ct-strip { padding: 18px 30px; flex-wrap: wrap; } }
   @media (max-width: 640px) {
     .ct-strip { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
     .ct-strip-timer { width: 100%; }
     .ct-strip-btn { width: 100%; text-align: center; padding: 12px; }
   }
/* Nav links — solid state */
.site-header.nav-scrolled .main-nav a,
.site-header.nav-scrolled .main-nav .has-dropdown > a { color: #334155 !important; background: none !important; }
.site-header.nav-scrolled .main-nav a:hover,
.site-header.nav-scrolled .main-nav .has-dropdown > a:hover { color: #1e293b !important; background: var(--light-bg) !important; }
.site-header.nav-scrolled .main-nav a.active { color: #1e293b !important; font-weight: 600; }

.site-header.nav-scrolled .hamburger span { background: #1e293b !important; }

/* ── Get in Touch — always green, always ── */
.nav-cta,
.main-nav .nav-cta,
.site-header .nav-cta,
.site-header.nav-scrolled .nav-cta,
.site-header.nav-scrolled .main-nav .nav-cta {
  background: #14B57B !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 18px !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-transform: none !important;
  letter-spacing: 0.02em;
}
.nav-cta:hover,
.main-nav .nav-cta:hover,
.site-header .nav-cta:hover,
.site-header.nav-scrolled .nav-cta:hover {
  background: #0fa068 !important;
  color: #fff !important;
}


/* =============================================
   NAV COUNTDOWN STRIP
   ============================================= */

.nav-countdown-strip {
  background: var(--navy);
  border-bottom: 2px solid var(--green);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  z-index: 997;
}

.ncs-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ncs-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ncs-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ncs-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ncs-btn {
  display: inline-block;
  padding: 7px 18px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ncs-btn:hover { background: #0fa068; color: #fff; }

@media (max-width: 768px) {
  .nav-countdown-strip { padding: 10px 20px; flex-wrap: wrap; gap: 12px; }
  .ncs-timer { width: 100%; }
  .ncs-btn { width: 100%; text-align: center; padding: 10px; }
}


/* =============================================
   WELCOME POPUP
   ============================================= */

.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,35,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s ease;
}

.welcome-overlay.hidden { display: none; }

.welcome-modal {
  background: var(--navy);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.45s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.welcome-modal-inner {
  padding: 48px;
}

.welcome-close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.welcome-close:hover { background: rgba(255,255,255,0.2); }

.welcome-pill {
  display: inline-block;
  background: rgba(20,181,123,0.15);
  color: var(--green);
  border: 1px solid rgba(20,181,123,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.welcome-modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.welcome-modal h2 em {
  color: var(--green);
  font-style: italic;
}

.welcome-modal > .welcome-modal-inner > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  text-align: left;
}

.welcome-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.welcome-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.welcome-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.welcome-countdown .cd-num {
  font-size: 2rem;
  min-width: 52px;
}

.welcome-register-btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.welcome-register-btn:hover { background: #0fa068; color: #fff; transform: translateY(-1px); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) {
  .welcome-modal-inner { padding: 32px 24px; }
}

/* index.html hero pushed below nav + countdown strip */
.has-nav-strip .hero-section {
  padding-top: 160px;
}
/* Photo highlights footer link */
.photo-footer {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: right;
}
/* Border-bottom only on hero strips in deal-room and partners */
#heroStrip { border-bottom: 3px solid var(--blue); }

/* =============================================
   EDITION PAGES — KEY TAKEAWAY (Option A)
   ============================================= */

.ed-key-takeaway {
  margin: 28px 0;
  padding-left: 28px;
  border-left: 3px solid var(--green);
}

.ed-kt-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ed-kt-label::after {
  content: '';
  flex: 0 0 20px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

.ed-kt-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}