/* ═══════════════════════════════════════════════
   CONFERENCE — Dedicated Stylesheet
   ═══════════════════════════════════════════════
   Covers:
     • Conference Hero
     • Conference Secondary Nav
     • Attendee Logo Bar
     • About Block
     • What to Expect Cards
     • Video + CTA
     • Hotel Block
     • Registration Tiers
     • Speaker Grid + Cards
     • Schedule Day Tabs + Session Rows
     • Session Type Badges
     • Shared Utilities
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --conf-navy: #080c18;
  --conf-navy-light: #0f1528;
  --conf-blue: #2655c0;
  --conf-gold: #c9a227;
  --conf-gold-hover: #dbb330;
  --conf-white: #ffffff;
  --conf-body: #1a1a2e;
  --conf-gray: #8b8fa3;
  --conf-border: rgba(255,255,255,0.12);
  --conf-card-bg: rgba(255,255,255,0.04);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.conf-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.conf-btn--primary {
  background-color: var(--conf-gold);
  color: var(--conf-navy);
  border-color: var(--conf-gold);
}
.conf-btn--primary:hover {
  background-color: var(--conf-gold-hover);
  border-color: var(--conf-gold-hover);
}

.conf-btn--outline {
  background-color: transparent;
  color: var(--conf-white);
  border-color: var(--conf-white);
}
.conf-btn--outline:hover {
  background-color: var(--conf-white);
  color: var(--conf-navy);
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */

.conf-section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--conf-gold);
  margin-bottom: 0.25rem;
}

.conf-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--conf-white);
  margin: 0 0 0.5rem;
}

.conf-section-desc {
  color: var(--conf-gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2rem;
}

.conf-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.conf-section-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  color: var(--conf-gold);
  text-decoration: none;
  white-space: nowrap;
}
.conf-section-link:hover {
  color: var(--conf-gold-hover);
}

.conf-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--conf-gray);
}
.conf-empty-state h2 {
  color: var(--conf-white);
  font-family: 'Barlow Condensed', sans-serif;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.conf-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--conf-navy);
  overflow: hidden;
}

.conf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.35);
  z-index: 1;
}

.conf-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1rem;
}

.conf-hero-logo {
  display: block;
  max-width: 620px;
  width: 100%;
  margin: 0 auto 2rem;
}

.conf-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--conf-white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.conf-hero-tagline {
  font-size: 1.35rem;
  color: var(--conf-white);
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.5;
}

.conf-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.conf-hero-meta-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--conf-white);
  letter-spacing: 0.02em;
}
.conf-hero-meta-item i {
  color: var(--conf-gold);
  margin-right: 0.4rem;
  font-size: 1.2rem;
}

.conf-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   CONFERENCE PAGE HEADER (Subpages)
   ═══════════════════════════════════════ */

.conf-page-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--conf-navy);
  overflow: hidden;
}

.conf-page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.35);
  z-index: 1;
  pointer-events: none;
}

.conf-page-header-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  max-width: 800px;
}

.conf-page-header-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--conf-gold);
  margin-bottom: 0.75rem;
}

.conf-page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--conf-white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.conf-page-header-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   SECONDARY NAV
   ═══════════════════════════════════════ */

.conf-nav {
  background: #0024c3;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  z-index: 100;
}

.conf-nav.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.conf-nav-placeholder {
  display: none;
}

.conf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
}

.conf-nav-left {
  display: flex;
  align-items: center;
  gap: 0;
}


.conf-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.conf-nav-link {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.conf-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--conf-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.conf-nav-link:hover,
.conf-nav-link.is-active {
  color: var(--conf-white);
}

.conf-nav-link:hover::after,
.conf-nav-link.is-active::after {
  transform: scaleX(1);
}

.conf-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  background: var(--conf-gold);
  color: var(--conf-navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 14px rgba(201,162,39,0.25);
  white-space: nowrap;
}
.conf-nav-cta i {
  font-size: 11px;
}
.conf-nav-cta:hover {
  background: var(--conf-gold-hover);
  box-shadow: 0 0 20px rgba(201,162,39,0.4);
}

/* ═══════════════════════════════════════
   ATTENDEE LOGO BAR
   ═══════════════════════════════════════ */

.conf-logo-bar {
  background-color: var(--conf-navy);
  padding: 2rem 0;
  border-bottom: 1px solid var(--conf-border);
}

/* Marquee wrapper — clips the scrolling track */
.conf-logo-marquee {
  overflow: hidden;
  width: 100%;
  padding-top: 1rem;
}

/* Scrolling track — contains original + duplicate logos */
.conf-logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

/* Duplicate set sits inline in the flex row */
.conf-logo-track-dupe {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Pause on hover so users can read logos */
.conf-logo-marquee:hover .conf-logo-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accessibility: pause for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .conf-logo-track {
    animation-play-state: paused;
  }
}

.conf-logo-item {
  flex-shrink: 0;
}

.conf-logo-item img {
  max-height: 48px;
  width: auto;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.conf-logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ═══════════════════════════════════════
   ABOUT BLOCK
   ═══════════════════════════════════════ */

.conf-about {
  background-color: var(--conf-navy);
  padding: 4rem 0;
}

.conf-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.conf-about-image img {
  width: 100%;
  border-radius: 8px;
}

.conf-about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--conf-white);
  margin-bottom: 1rem;
}

.conf-about-body {
  color: var(--conf-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

/* ═══════════════════════════════════════
   WHAT TO EXPECT
   ═══════════════════════════════════════ */

.conf-expect {
  background-color: var(--conf-navy-light);
  padding: 4rem 0;
}

.conf-expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.conf-expect-card {
  background-color: var(--conf-card-bg);
  border: 1px solid var(--conf-border);
  border-radius: 8px;
  overflow: hidden;
}

.conf-expect-card-dates {
  padding: 0.75rem 1.25rem;
  background-color: var(--conf-blue);
  color: var(--conf-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.conf-expect-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.conf-expect-card-body {
  padding: 1.5rem;
}
.conf-expect-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--conf-white);
  margin-bottom: 0.75rem;
}
.conf-expect-card-body h4 a {
  color: var(--conf-gold);
  text-decoration: none;
}
.conf-expect-card-body p,
.conf-expect-card-body {
  color: var(--conf-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════
   SPEAKERS GRID + CARDS
   ═══════════════════════════════════════ */

.conf-speakers-preview,
.is-conference-speakers .site-content {
  background-color: var(--conf-navy);
  padding-top: 4rem;
}

.conf-speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.conf-speakers-grid--preview {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.conf-speaker-card {
  background-color: var(--conf-card-bg);
  border: 1px solid var(--conf-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.conf-speaker-card--expandable {
  cursor: pointer;
}

.conf-speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--conf-gold);
}

.conf-speaker-card.is-expanded {
  border-color: var(--conf-gold);
}

.conf-speaker-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
}

.conf-speaker-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--conf-navy-light);
  color: var(--conf-gray);
  font-size: 3rem;
}

.conf-speaker-info {
  padding: 1rem;
}

.conf-speaker-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--conf-white);
  margin: 0 0 0.25rem;
}

.conf-speaker-title {
  color: var(--conf-gold);
  font-size: 0.85rem;
  margin: 0 0 0.15rem;
}

.conf-speaker-org {
  color: var(--conf-gray);
  font-size: 0.85rem;
  margin: 0;
}

.conf-speaker-bio-wrap {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--conf-border);
  margin-top: 0.5rem;
}

.conf-speaker-bio {
  color: var(--conf-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 1rem;
}

.conf-speaker-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.conf-speaker-links a {
  color: var(--conf-gray);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.conf-speaker-links a:hover {
  color: var(--conf-gold);
}

/* ═══════════════════════════════════════
   SCHEDULE PREVIEW (Landing Page)
   ═══════════════════════════════════════ */

.conf-schedule-preview {
  background-color: var(--conf-navy);
  padding: 4rem 0;
}

.conf-schedule-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.conf-schedule-preview-day {
  background-color: var(--conf-card-bg);
  border: 1px solid var(--conf-border);
  border-radius: 8px;
  padding: 1.5rem;
}

.conf-schedule-preview-day-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--conf-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--conf-border);
}

.conf-schedule-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conf-schedule-preview-item {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--conf-border);
}
.conf-schedule-preview-item:last-child {
  border-bottom: none;
}

.conf-schedule-preview-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--conf-gold);
  white-space: nowrap;
  min-width: 80px;
}

.conf-schedule-preview-title {
  color: var(--conf-white);
  font-size: 0.9rem;
}

.conf-schedule-preview-more {
  padding-top: 0.75rem;
  color: var(--conf-gray);
  font-size: 0.85rem;
  font-style: italic;
}

/* ═══════════════════════════════════════
   SCHEDULE TABS + SESSION LIST
   ═══════════════════════════════════════ */

.is-conference-schedule .site-content {
  background-color: var(--conf-navy);
  padding-top: 2rem;
  padding-bottom: 0;
}

.conf-schedule-intro {
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Day Tabs ── */

.conf-schedule-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0;
  border-bottom: none;
}

.conf-schedule-tab {
  padding: 0.85rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--conf-gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--conf-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.conf-schedule-tab:hover {
  color: var(--conf-white);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
}
.conf-schedule-tab.is-active {
  color: var(--conf-white);
  background: linear-gradient(135deg, rgba(201,162,39,0.18) 0%, rgba(38,85,192,0.12) 100%);
  border-color: var(--conf-gold);
  box-shadow: 0 0 20px rgba(201,162,39,0.1);
}

/* ── Session Type Filters ── */

.conf-schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.conf-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--conf-gray);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.conf-filter-pill:hover {
  color: var(--conf-white);
  background: rgba(255,255,255,0.06);
}

.conf-filter-pill.is-active {
  color: var(--conf-white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 0 12px rgba(255,255,255,0.04);
}

.conf-filter-pill i {
  font-size: 0.78rem;
  opacity: 0.7;
}
.conf-filter-pill.is-active i {
  opacity: 1;
}

/* Color-coded filter dots */
.conf-filter-pill[data-filter="keynote"].is-active    { border-color: var(--conf-gold); box-shadow: 0 0 12px rgba(201,162,39,0.15); }
.conf-filter-pill[data-filter="panel"].is-active      { border-color: #5b8def; box-shadow: 0 0 12px rgba(91,141,239,0.15); }
.conf-filter-pill[data-filter="fireside"].is-active   { border-color: #e67e22; box-shadow: 0 0 12px rgba(230,126,34,0.15); }
.conf-filter-pill[data-filter="workshop"].is-active   { border-color: #2ecc71; box-shadow: 0 0 12px rgba(46,204,113,0.15); }
.conf-filter-pill[data-filter="networking"].is-active  { border-color: #3498db; box-shadow: 0 0 12px rgba(52,152,219,0.15); }
.conf-filter-pill[data-filter="awards"].is-active     { border-color: var(--conf-gold); box-shadow: 0 0 12px rgba(201,162,39,0.15); }
.conf-filter-pill[data-filter="break"].is-active      { border-color: #95a5a6; box-shadow: 0 0 12px rgba(149,165,166,0.1); }
.conf-filter-pill[data-filter="reception"].is-active  { border-color: #f1c40f; box-shadow: 0 0 12px rgba(241,196,15,0.15); }

.conf-schedule-no-results {
  color: var(--conf-gray);
  font-style: italic;
  text-align: center;
  padding: 4rem 1rem;
  font-size: 1.05rem;
}

.conf-schedule-panel {
  display: none;
}
.conf-schedule-panel.is-active {
  display: block;
}

/* ── Session Cards ── */

.conf-session-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conf-session-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: none;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.conf-session-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  background: var(--conf-border);
  transition: background 0.3s ease;
}

.conf-session-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  transform: translateX(2px);
}

/* Left accent color per type */
.conf-session-row--keynote::before    { background: var(--conf-gold); }
.conf-session-row--panel::before      { background: #5b8def; }
.conf-session-row--workshop::before   { background: #2ecc71; }
.conf-session-row--breakout::before   { background: #9b59b6; }
.conf-session-row--fireside::before   { background: #e67e22; }
.conf-session-row--networking::before { background: #3498db; }
.conf-session-row--awards::before     { background: var(--conf-gold); }
.conf-session-row--break::before      { background: #95a5a6; }
.conf-session-row--reception::before  { background: #f1c40f; }

/* ── Time Column ── */

.conf-session-time {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.15rem;
}

.conf-session-time-range {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--conf-white);
  letter-spacing: 0.02em;
}

.conf-session-room {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.conf-session-room i {
  color: var(--conf-gold);
  font-size: 0.75rem;
}

/* ── Content Column ── */

.conf-session-header {
  margin-bottom: 0.75rem;
}

.conf-session-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--conf-white);
  margin: 0.5rem 0 0;
}

.conf-session-description {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 72ch;
}

.conf-session-description p {
  margin-bottom: 0.75em;
}
.conf-session-description p:last-child {
  margin-bottom: 0;
}

/* ── Session Type Badges ── */

.conf-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.conf-session-badge--keynote    { background: rgba(201,162,39,0.15); color: var(--conf-gold); border: 1px solid rgba(201,162,39,0.25); }
.conf-session-badge--panel      { background: rgba(91,141,239,0.12); color: #5b8def; border: 1px solid rgba(91,141,239,0.2); }
.conf-session-badge--workshop   { background: rgba(46,204,113,0.12); color: #2ecc71; border: 1px solid rgba(46,204,113,0.2); }
.conf-session-badge--breakout   { background: rgba(155,89,182,0.12); color: #9b59b6; border: 1px solid rgba(155,89,182,0.2); }
.conf-session-badge--fireside   { background: rgba(230,126,34,0.12); color: #e67e22; border: 1px solid rgba(230,126,34,0.2); }
.conf-session-badge--networking { background: rgba(52,152,219,0.12); color: #3498db; border: 1px solid rgba(52,152,219,0.2); }
.conf-session-badge--awards     { background: rgba(201,162,39,0.15); color: var(--conf-gold); border: 1px solid rgba(201,162,39,0.3); }
.conf-session-badge--break      { background: rgba(149,165,166,0.1);  color: #b0b8ba; border: 1px solid rgba(149,165,166,0.15); }
.conf-session-badge--reception  { background: rgba(241,196,15,0.12); color: #f1c40f; border: 1px solid rgba(241,196,15,0.2); }

/* ── Session Speakers ── */

.conf-session-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.conf-session-speaker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.conf-session-speaker-pill:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.conf-session-speaker-pill img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.conf-session-speaker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--conf-gray);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.conf-session-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.3;
}

.conf-session-speaker-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--conf-white);
}

.conf-session-speaker-org {
  font-size: 0.8rem;
  color: var(--conf-gray);
  font-weight: 400;
}

/* ── Schedule Responsive ── */

@media (max-width: 768px) {
  .conf-session-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem;
  }
  .conf-session-time {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .conf-session-title {
    font-size: 1.25rem;
  }
  .conf-session-description {
    font-size: 0.95rem;
  }
  .conf-schedule-tabs {
    overflow-x: auto;
    gap: 0.5rem;
  }
  .conf-schedule-tab {
    font-size: 0.95rem;
    padding: 0.7rem 1.25rem;
  }
  .conf-schedule-filters {
    gap: 0.4rem;
    padding: 0.75rem;
  }
  .conf-filter-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }
  .conf-session-speaker-pill {
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    gap: 0.5rem;
  }
  .conf-session-speaker-pill img,
  .conf-session-speaker-avatar {
    width: 34px;
    height: 34px;
  }
  .conf-session-speaker-name {
    font-size: 0.88rem;
  }
  .conf-session-speaker-org {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .conf-session-row {
    padding: 1rem;
  }
  .conf-session-title {
    font-size: 1.15rem;
  }
  .conf-schedule-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .conf-schedule-tab {
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   VIDEO + CTA
   ═══════════════════════════════════════ */

.conf-video-cta {
  background-color: var(--conf-navy-light);
  padding: 4rem 0;
}

.conf-video-cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.conf-video-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

.conf-photos-link h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--conf-white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .conf-video-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   HOTEL BLOCK
   ═══════════════════════════════════════ */

.conf-hotel {
  background-color: var(--conf-navy);
  padding: 4rem 0;
}

.conf-hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.conf-hotel-image img {
  width: 100%;
  border-radius: 8px;
}

.conf-hotel-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--conf-white);
  margin-bottom: 0.5rem;
}

.conf-hotel-address {
  color: var(--conf-gray);
  margin-bottom: 1rem;
}
.conf-hotel-address i {
  color: var(--conf-gold);
}

.conf-hotel-details {
  color: var(--conf-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

/* ═══════════════════════════════════════
   SPONSOR LOGO GRID
   ═══════════════════════════════════════ */

.conf-sponsors {
  background-color: var(--conf-blue);
  padding: 4rem 0;
  text-align: center;
}

.conf-sponsors-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--conf-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.conf-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
  justify-items: center;
}

.conf-sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.conf-sponsor-item img {
  display: block;
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.conf-sponsor-item img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .conf-sponsors {
    padding: 3rem 0;
  }
  .conf-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .conf-sponsor-item img {
    max-width: 150px;
    max-height: 50px;
  }
}

/* ═══════════════════════════════════════
   REGISTRATION TIERS
   ═══════════════════════════════════════ */

.conf-registration {
  background-color: var(--conf-gold);
  padding: 4rem 0;
  text-align: center;
}

.conf-registration-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--conf-navy);
  margin-bottom: 0.5rem;
}

.conf-registration-note {
  color: var(--conf-navy);
  margin-bottom: 2rem;
}
.conf-registration-note a {
  color: var(--conf-navy);
  font-weight: 600;
  text-decoration: underline;
}

.conf-tiers-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.conf-tier-card {
  background-color: var(--conf-white);
  border-radius: 8px;
  padding: 2rem;
  min-width: 240px;
  max-width: 320px;
  flex: 1;
}

.conf-tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--conf-gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.conf-tier-deadline {
  font-size: 0.85rem;
  color: var(--conf-body);
  margin-bottom: 1rem;
}

.conf-tier-prices {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.conf-tier-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conf-tier-price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--conf-navy);
}

.conf-tier-price-label {
  font-size: 0.8rem;
  color: var(--conf-body);
  text-transform: uppercase;
}

.conf-tier-card .conf-btn--primary {
  width: 100%;
  text-align: center;
}

.conf-press-pass {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(8,12,24,0.15);
}
.conf-press-pass h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--conf-navy);
  margin-bottom: 0.25rem;
}
.conf-press-pass p {
  color: var(--conf-navy);
  margin-bottom: 1rem;
}
.conf-press-pass .conf-btn--outline {
  color: var(--conf-navy);
  border-color: var(--conf-navy);
}
.conf-press-pass .conf-btn--outline:hover {
  background-color: var(--conf-navy);
  color: var(--conf-gold);
}

/* ═══════════════════════════════════════
   SPEAKER DETAIL MODAL
   ═══════════════════════════════════════ */

/* ── Clickable speaker triggers ── */

.conf-speaker-trigger {
  cursor: pointer;
}

button.conf-speaker-trigger {
  font: inherit;
  text-align: left;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
}

/* Re-apply pill styles on button element */
button.conf-session-speaker-pill.conf-speaker-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.2s ease;
}

button.conf-session-speaker-pill.conf-speaker-trigger:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,162,39,0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.conf-speaker-card.conf-speaker-trigger {
  transition: all 0.3s ease;
}
.conf-speaker-card.conf-speaker-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: rgba(201,162,39,0.3);
}

/* ── Modal Overlay ── */

.conf-speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.conf-speaker-modal[hidden] {
  display: none;
}

.conf-speaker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: confModalFadeIn 0.25s ease;
}

.conf-speaker-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(18, 22, 38, 0.98), rgba(12, 15, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 162, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: confModalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Close Button ── */

.conf-speaker-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.conf-speaker-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--conf-white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ── Modal Body ── */

.conf-speaker-modal-body {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
}

/* ── Photo ── */

.conf-speaker-modal-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.conf-speaker-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.conf-speaker-modal-photo img[src=""] {
  display: none;
}

.conf-speaker-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.2);
  font-size: 3.5rem;
}

.conf-speaker-modal-photo img[src=""]:not([src]) + .conf-speaker-modal-placeholder,
.conf-speaker-modal-placeholder.is-visible {
  display: flex;
}

.conf-speaker-modal-placeholder.is-hidden {
  display: none;
}

/* ── Details ── */

.conf-speaker-modal-details {
  flex: 1;
  min-width: 0;
}

.conf-speaker-modal-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--conf-white);
  margin: 0 0 0.35rem;
}

.conf-speaker-modal-title {
  font-size: 1.05rem;
  color: var(--conf-gold);
  margin: 0 0 0.15rem;
  font-weight: 500;
}

.conf-speaker-modal-title:empty {
  display: none;
}

.conf-speaker-modal-org {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
  font-weight: 400;
}

.conf-speaker-modal-org:empty {
  display: none;
}

/* ── Social Links ── */

.conf-speaker-modal-links {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.conf-speaker-modal-links:empty {
  display: none;
}

.conf-speaker-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.conf-speaker-modal-link[href=""],
.conf-speaker-modal-link.is-hidden {
  display: none;
}

#confModalLinkedIn {
  background: rgba(10, 102, 194, 0.12);
  color: #5b9bd5;
  border: 1px solid rgba(10, 102, 194, 0.2);
}
#confModalLinkedIn:hover {
  background: rgba(10, 102, 194, 0.25);
  color: #7ab8f5;
}

#confModalWebsite {
  background: rgba(201, 162, 39, 0.1);
  color: var(--conf-gold);
  border: 1px solid rgba(201, 162, 39, 0.2);
}
#confModalWebsite:hover {
  background: rgba(201, 162, 39, 0.2);
}

/* ── Bio ── */

.conf-speaker-modal-bio {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}

.conf-speaker-modal-bio:empty {
  display: none;
}

.conf-speaker-modal-bio p {
  margin-bottom: 0.75em;
}
.conf-speaker-modal-bio p:last-child {
  margin-bottom: 0;
}

/* ── Animations ── */

@keyframes confModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes confModalSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Modal Scrollbar ── */

.conf-speaker-modal-dialog::-webkit-scrollbar {
  width: 6px;
}
.conf-speaker-modal-dialog::-webkit-scrollbar-track {
  background: transparent;
}
.conf-speaker-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.conf-speaker-modal-dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  /* Disable parallax on mobile (iOS doesn't support background-attachment: fixed) */
  .conf-hero,
  .conf-page-header {
    background-attachment: scroll;
  }
  .conf-hero {
    min-height: 60vh;
  }
  .conf-hero-logo {
    max-width: 380px;
  }
  .conf-hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .conf-hero-meta-item {
    font-size: 1.15rem;
  }
  .conf-page-header {
    min-height: 240px;
  }
  .conf-page-header-inner {
    padding: 3.5rem 1rem 3rem;
  }
  .conf-page-header-title {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
  .conf-nav-inner {
    padding: 0 20px;
    height: auto;
    min-height: 56px;
    flex-wrap: wrap;
  }
  .conf-nav-left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .conf-nav-links {
    overflow-x: auto;
    width: 100%;
  }
  .conf-nav-link {
    height: auto;
    padding: 0.75rem 1rem;
    font-size: 13px;
  }
  .conf-nav-link::after {
    left: 1rem;
    right: 1rem;
  }
  .conf-nav-cta {
    display: none;
  }
  .conf-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .conf-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Modal responsive */
  .conf-speaker-modal-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .conf-speaker-modal-photo {
    width: 140px;
    height: 140px;
  }
  .conf-speaker-modal-name {
    font-size: 1.65rem;
  }
  .conf-speaker-modal-links {
    justify-content: center;
  }
  .conf-speaker-modal-bio {
    text-align: left;
  }
  .conf-speaker-modal-dialog {
    max-height: 90vh;
  }
  button.conf-session-speaker-pill.conf-speaker-trigger {
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .conf-speakers-grid {
    grid-template-columns: 1fr;
  }
  .conf-page-header {
    min-height: 200px;
  }
  .conf-page-header-inner {
    padding: 3rem 1rem 2.5rem;
  }
  .conf-speaker-modal {
    padding: 0.75rem;
  }
  .conf-speaker-modal-body {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }
  .conf-speaker-modal-photo {
    width: 120px;
    height: 120px;
  }
  .conf-speaker-modal-name {
    font-size: 1.5rem;
  }
}
