/* ============================================================
   AI TRUST & GOVERNANCE CONCLAVE 2026 — Main Stylesheet
   Edit this file to customise colours, fonts, spacing & layout
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --navy: #07102a;
  --navy-mid: #0d1e3f;
  --navy-light: #142550;
  --gold: #c9a046;
  --gold-light: #e2c070;
  --gold-pale: #f0d99020;
  --cyan: #3dd6f5;
  --cyan-dim: #3dd6f520;
  --white: #f2ede6;
  --white-dim: #f2ede680;
  --white-faint: #f2ede615;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --gold: #c9a046;
  --cyan: #3dd6f5;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.65);
  --navy: #07102a;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

html {
  scroll-padding-top: 150px;
  /* match this to your navbar height */
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
    /* mobile — match your mobile navbar height */
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(7, 16, 42, 0.98) 0%, rgba(7, 16, 42, 0) 100%);
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(7, 16, 42, 0.97);
  border-bottom: 1px solid rgba(201, 160, 70, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 150px;
  margin-top: 25px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 160, 70, 0.3));
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-event-title {
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
  text-align: center;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}

.nav-event-title .accent {
  color: var(--gold);
  font-style: italic;
}

nav.scrolled .nav-event-title {
  opacity: 1;
  max-height: 30px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #0d1e3f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #e2c070;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.15s, color 0.15s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Wrap nav-links + title together in a column */
.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Hidden by default */
.nav-event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}

.nav-event-title .accent {
  color: var(--gold);
  font-style: italic;
}

/* Show when scrolled */
nav.scrolled .nav-event-title {
  opacity: 1;
  max-height: 30px;
}

/* Hide event title on mobile */
@media (max-width: 768px) {
  .nav-event-title {
    display: none !important;
  }

  nav {
    padding: 12px 20px;
  }

  .nav-logo img {
    height: 50px;
    margin-top: 0;
  }

  .nav-links {
    display: none;
    /* hidden on mobile, shown via hamburger */
  }

  .hamburger {
    display: flex;
  }

  .nav-center {
    flex: 1;
    align-items: flex-start;
    /* or center if you want logo centered */
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  gap: 20px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(61, 214, 245, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(201, 160, 70, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#circuit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 8px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  white-space: nowrap;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 900px;
  margin: 0;
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
  position: relative;
  z-index: 2;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
  position: relative;
  z-index: 2;
}

/* ============================================================
   THREE COLUMN LAYOUT
   ============================================================ */
.three-column-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 10px auto;
  position: relative;
  z-index: 2;
  padding: 0;
}

.left-meta {
  flex: 0 0 240px;
  text-align: left;
}

.right-questions {
  flex: 0 0 260px;
  text-align: left;
}

.hero-speakers {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Meta Card */
.meta-card {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  height: 100%;
  min-height: 380px;
}

.meta-item {
  margin-bottom: 20px;
}

.meta-item:last-child {
  margin-bottom: 0;
}

.meta-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  display: block;
}

.meta-value a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Right Column - Silver Partner Styles */
.right-partner {
  flex: 1;
  min-width: 0;
}

.partner-card {
  background: rgba(7, 16, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 160, 70, 0.3);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  min-height: 380px;
  /* desktop only */
}

.partner-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 160, 70, 0.2);
}

.partner-logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.partner-link {
  display: block;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.partner-link:hover {
  transform: scale(1.05);
}

.partner-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.partner-link:hover .partner-logo-img {
  filter: brightness(1) contrast(1.2);
  opacity: 0.9;
}

/* ── Responsive Breakpoints ── */

@media (max-width: 1200px) {
  .partner-card {
    padding: 20px 16px;
  }

  .partner-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .partner-logos-wrapper {
    gap: 20px;
  }

  .partner-logo-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 992px) {
  .partner-card {
    padding: 18px 14px;
  }

  .partner-label {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .partner-logos-wrapper {
    gap: 16px;
  }

  .partner-logo-img {
    width: 90px;
    height: 90px;
  }
}

/* ── Mobile: card shrinks to fit content ── */
@media (max-width: 768px) {
  .right-partner {
    margin-top: 16px;
  }

  .partner-card {
    padding: 16px;
    min-height: unset;
    /* ← removes the large empty space */
    height: auto;
    /* ← shrinks to content */
  }

  .partner-label {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .partner-logos-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .partner-link {
    width: auto;
    flex: 0 0 auto;
  }

  .partner-logo-img {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .partner-card {
    padding: 14px 12px;
    min-height: unset;
    height: auto;
  }

  .partner-label {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .partner-logos-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .partner-logo-img {
    width: 90px;
    height: 50px;
  }

  .partner-link:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .right-partner {
    margin-top: 16px;
    width: 100%;
  }

  .partner-card {
    padding: 16px;
    min-height: unset;
    height: auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .partner-card {
    padding: 14px 12px;
    min-height: unset;
    height: auto;
    width: 100%;
  }
}

/* Speakers Header */
.hero-speakers-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-speakers-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-speakers-label {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Speaker Strip Container */
.hero-speaker-strip-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 12px 0 20px 0;
  scroll-snap-type: x mandatory;
}

.hero-speaker-strip-container::-webkit-scrollbar {
  height: 4px;
}

.hero-speaker-strip-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.hero-speaker-strip-container::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* Speaker Strip */
.hero-speaker-strip {
  display: flex;
  gap: 30px;
  width: fit-content;
  padding: 0 10px;
}

/* Speaker Card */
.hero-speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 160px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  scroll-snap-align: start;
}

.hero-speaker-card:hover {
  transform: translateY(-3px);
}

.hero-speaker-card:hover .hero-speaker-img {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(61, 214, 245, 0.4);
}

.hero-speaker-img-wrapper {
  position: relative;
}

.hero-speaker-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: #1a1d26;
  flex-shrink: 0;
}

.hero-speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: top center; */
  transition: transform 0.4s ease;
}

.hero-speaker-card:hover .hero-speaker-img img {
  transform: scale(1.08);
}

.hero-speaker-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 70, 0.3), transparent 70%);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.hero-speaker-name {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  max-width: 140px;
  line-height: 1.5;
  display: inline-block;
  width: auto;
}

.hero-speaker-company {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 140px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

/* Navigation Arrows */
.hero-speaker-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.scroll-arrow {
  background: rgba(201, 160, 70, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.scroll-arrow:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.scroll-arrow:hover svg {
  stroke: #07102a;
}

.scroll-arrow svg {
  stroke: var(--gold);
  transition: stroke 0.3s ease;
}

.scroll-arrow:active {
  transform: scale(0.95);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-organizers {
  margin-top: 18px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s 1.3s forwards;
}

.hero-organizers-label {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-organizers-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-organizers-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 12px rgba(201, 160, 70, 0.2));
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8892a);
  color: #0b0d12;
  box-shadow: 0 4px 15px rgba(201, 160, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 160, 70, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.btn-secondary:hover {
  background: rgba(61, 214, 245, 0.1);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
  .three-column-layout {
    padding: 0 30px;
    gap: 25px;
  }

  .left-meta {
    flex: 0 0 220px;
  }

  .right-questions {
    flex: 0 0 240px;
  }
}

@media (max-width: 1000px) {
  .three-column-layout {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .left-meta,
  .right-questions,
  .hero-speakers {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  .hero-speakers {
    max-width: 100%;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero-speakers {
    max-width: 100%;
  }

  .hero-speaker-card {
    width: 140px;
  }

  .hero-speaker-img {
    width: 120px;
    height: 120px;
  }

  .hero-speaker-name {
    font-size: 11px;
    max-width: 120px;
  }
}

@media (max-width: 768px) {

  /* Navigation */
  nav {
    padding: 12px 20px;
  }

  .nav-logo img {
    height: 60px;
    margin-top: 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    padding: 6px 14px;
    font-size: 10px;
  }

  /* Hero */
  .hero {
    padding: 100px 16px 50px;
    gap: 16px;
  }

  .hero-eyebrow {
    font-size: 9px;
    margin-top: 15px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 25px;
  }

  .hero-title {
    font-size: 28px;
    white-space: normal;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Three Column */
  .three-column-layout {
    margin: 20px auto;
    padding: 0 15px;
  }

  .meta-card,
  .questions-card {
    padding: 16px 20px;
  }

  .meta-label {
    font-size: 10px;
  }

  .meta-value {
    font-size: 12px;
  }

  .questions-label {
    font-size: 11px;
  }

  .questions-list p {
    font-size: 11px;
    margin: 10px 0;
  }

  /* Speakers */
  .hero-speakers-label {
    font-size: 12px;
  }

  .hero-speakers-line {
    width: 30px;
  }

  .hero-speaker-card {
    width: 120px;
  }

  .hero-speaker-img {
    width: 100px;
    height: 100px;
  }

  .hero-speaker-name {
    font-size: 10px;
    white-space: normal;
    max-width: 100px;
  }

  .hero-speaker-company {
    font-size: 8px;
    white-space: normal;
    max-width: 100px;
  }

  .hero-speaker-strip {
    gap: 20px;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
    font-size: 10px;
    width: 200px;
  }

  /* Organizers */
  .hero-organizers-label {
    font-size: 12px;
  }

  .hero-organizers-logos img {
    height: 35px;
  }
}

@media (max-width: 600px) {
  .hero-speaker-card {
    width: 110px;
  }

  .hero-speaker-img {
    width: 90px;
    height: 90px;
  }

  .hero-speaker-name {
    font-size: 9px;
    max-width: 90px;
  }

  .hero-speaker-company {
    font-size: 7px;
    max-width: 90px;
  }
}

@media (max-width: 480px) {
  .hero-speaker-card {
    width: 100px;
  }

  .hero-speaker-img {
    width: 80px;
    height: 80px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-eyebrow {
    font-size: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 180px;
    padding: 8px 20px;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .three-column-layout {
    gap: 20px;
    padding: 0 20px;
  }

  .left-meta {
    flex: 0 0 200px;
  }

  .right-questions {
    flex: 0 0 220px;
  }

  .hero-speaker-card {
    width: 130px;
  }

  .hero-speaker-img {
    width: 110px;
    height: 110px;
  }
}

/* Notch Phones Support */
@supports (padding: max(0px)) {
  .hero {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(242, 237, 230, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--white);
}

/* ============================================================
   SECTION BASE STYLES
   ============================================================ */
section {
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title .italic {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 680px;
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 160, 70, 0.3), transparent);
}

.gold-divider-hex {
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(201, 160, 70, 0.04);
}

.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
}

.pull-quote-attr {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: linear-gradient(to bottom, var(--navy) 0%, var(--navy-mid) 100%);
}

/* ── Main grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

/* ── Left column ── */
.about-col-left .section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-col-left .section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.about-col-left .section-title {
  margin-bottom: 28px;
}

/* ── Right column ── */
.about-col-right .why-attend-label {
  margin-bottom: 12px;
}

.about-col-right .why-attend-title {
  margin-bottom: 28px;
}

/* ── Why attend grid (2x2 cards) ── */
.why-attend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}

.why-attend-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
}

.why-attend-card-title {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.why-attend-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-attend-bullet-list li {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 8px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.why-attend-bullet-list li .arrow {
  color: var(--cyan);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Pull quote ── */
.pull-quote {
  margin: 24px 0;
  padding: 20px;
  background: rgba(61, 214, 245, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pull-quote-attr {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── CTA ── */
.section-cta {
  margin-top: 48px;
  text-align: center;
}

/* ── Tablet ── */
@media (max-width: 1000px) {
  .about-grid {
    gap: 40px;
  }

  .why-attend-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    /* stack columns */
    gap: 40px;
  }

  .why-attend-grid {
    grid-template-columns: 1fr;
    /* stack cards */
    gap: 12px;
  }

  .pull-quote-text {
    font-size: 16px;
  }

  .section-cta {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .why-attend-card {
    padding: 14px 12px;
  }

  .why-attend-card-title {
    font-size: 12px;
  }

  .why-attend-bullet-list li {
    font-size: 12px;
  }
}

/* ============================================================
   WHY ATTEND SECTION
   ============================================================ */
.why-section {
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.why-card {
  background: rgba(13, 30, 63, 0.5);
  border: 1px solid rgba(201, 160, 70, 0.1);
  padding: 36px 28px;
  transition: all 0.4s;
}

.why-card:hover {
  border-color: rgba(201, 160, 70, 0.3);
}

.why-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-bullet-list {
  list-style: none;
  padding: 0;
}

.why-bullet-list li {
  font-size: 14px;
  color: var(--white-dim);
  padding: 7px 0;
  border-bottom: 1px solid rgba(242, 237, 230, 0.07);
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.why-bullet-list li:last-child {
  border-bottom: none;
}

.why-bullet-list li span.arrow {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Why Attend Inline Section (replacing right column) */
.why-attend-inline {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
  border: none;
}

.why-attend-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-attend-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.why-attend-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  /* matches section-title scale */
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  margin-bottom: 0;
}

.why-attend-title .italic {
  font-style: italic;
  color: var(--cyan);
}

.why-attend-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-attend-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.why-attend-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-attend-card-title {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.why-attend-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-attend-bullet-list li {
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 8px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.why-attend-bullet-list li .arrow {
  color: var(--cyan);
  font-size: 14px;
  line-height: 1;
}

/* Headers grid — mirrors about-grid columns exactly */
.about-headers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 12px;
}

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

/* Adjust the about-grid for better balance */
.about-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 40px;
}

.about-grid>div {
  flex: 1;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-grid {
    flex-direction: column;
    gap: 30px;
  }

  .why-attend-inline {
    padding: 20px;
  }

  .why-attend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-attend-card {
    border-bottom: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
  }
}

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

/* Pull quote styling */
.pull-quote {
  margin: 24px 0;
  padding: 20px;
  background: rgba(61, 214, 245, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.pull-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pull-quote-attr {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROGRAMME TRACKS SECTION
   ============================================================ */
.themes-section {
  background: var(--navy);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 30px;
}

.theme-card {
  background: rgba(13, 30, 63, 0.5);
  border: 1px solid rgba(201, 160, 70, 0.1);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.theme-card:hover {
  background: rgba(13, 30, 63, 0.9);
  border-color: rgba(201, 160, 70, 0.3);
  transform: translateY(-4px);
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgb(236, 141, 9);
  /* ← change track number colour here */
  line-height: 1;
  margin-bottom: 20px;
}

.theme-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--cyan);
}

.theme-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.theme-body {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ============================================================
   WHO ATTENDS SECTION
   ============================================================ */
.audience-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.audience-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 160, 70, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tag {
  border: 1px solid rgba(201, 160, 70, 0.25);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--white-dim);
  transition: all 0.3s;
  cursor: default;
}

.audience-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 70, 0.06);
}

.audience-tag.featured {
  border-color: rgba(61, 214, 245, 0.3);
  color: var(--cyan);
}

.audience-tag.featured:hover {
  border-color: var(--cyan);
  background: rgba(61, 214, 245, 0.05);
}

.impact-list {
  margin-top: 16px;
}

.impact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(242, 237, 230, 0.07);
  align-items: flex-start;
}

.impact-item:last-child {
  border-bottom: none;
}

.impact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.impact-text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.6;
}

.impact-text strong {
  color: var(--white);
  font-weight: 500;
}

/* ============================================================
   DISCLAIMER STYLES
   ============================================================ */
.disclaimer-box {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  padding: 24px 28px;
  background: rgba(7, 16, 42, 0.6);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.disclaimer-box:hover {
  background: rgba(7, 16, 42, 0.8);
  border-left-color: var(--cyan);
}

.disclaimer-content {
  flex: 1;
}

.disclaimer-title {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 14px;
}

.disclaimer-text:last-child {
  margin-bottom: 0;
}

.disclaimer-note {
  font-size: 14px;
  color: var(--cyan);
  font-style: italic;
}

/* Responsive Styles for Disclaimer */
@media (max-width: 768px) {
  .disclaimer-box {
    gap: 12px;
    padding: 18px 20px;
    margin-top: 36px;
  }

  .disclaimer-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .disclaimer-text,
  .disclaimer-note {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .disclaimer-box {
    padding: 16px 18px;
    margin-top: 28px;
  }

  .disclaimer-title {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .disclaimer-text,
  .disclaimer-note {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .disclaimer-box,
  .disclaimer-box:hover {
    transition: none;
  }
}

/* ============================================================
   SPEAKERS SECTION
   ============================================================ */
.speakers-section {
  padding: 0px 20px;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.8), rgba(11, 13, 18, 1));
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .italic {
  font-style: italic;
  color: var(--cyan);
}

.section-body {
  font-size: 16px;
  color: var(--white-dim);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Manual Navigation Carousel */
.speaker-carousel-container {
  position: relative;
  margin: 30px 0;
}

.speaker-strip-container-manual {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 20px 0 30px 0;
}

.speaker-strip-container-manual::-webkit-scrollbar {
  height: 5px;
}

.speaker-strip-container-manual::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.speaker-strip-container-manual::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.speaker-strip-manual {
  display: flex;
  gap: 32px;
  width: fit-content;
  padding: 0 10px;
}

/* Speaker Card */
.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 160, 70, 0.15);
  cursor: pointer;
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 160, 70, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.speaker-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.speaker-card:hover .speaker-photo {
  border-color: var(--cyan);
  transform: scale(1.02);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: top center; */
}

.speaker-info {
  text-align: center;
  width: 100%;
}

.speaker-name {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.speaker-position {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}

.speaker-linkedin a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(61, 214, 245, 0.1);
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

.speaker-linkedin a:hover {
  background: rgba(61, 214, 245, 0.25);
  transform: translateY(-2px) scale(1.05);
}

.speaker-linkedin svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Navigation Arrows */
.speaker-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.speaker-scroll-arrow {
  background: rgba(201, 160, 70, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.speaker-scroll-arrow:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.speaker-scroll-arrow:hover svg {
  stroke: #07102a;
}

.speaker-scroll-arrow svg {
  stroke: var(--gold);
  transition: stroke 0.3s ease;
}

.speaker-scroll-arrow:active {
  transform: scale(0.95);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .speakers-section {
    padding: 60px 20px;
  }

  .speaker-card {
    min-width: 260px;
    max-width: 260px;
    padding: 18px 15px;
  }

  .speaker-photo {
    width: 120px;
    height: 120px;
  }

  .speaker-name {
    font-size: 14px;
  }

  .speaker-position {
    font-size: 10px;
  }

  .speaker-scroll-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ============================================================
   SPONSORSHIP SECTION
   ============================================================ */
.sponsor-section {
  background: var(--navy);
}

.sponsor-intro {
  max-width: 680px;
  margin-bottom: 60px;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

.sponsor-tier {
  padding: 40px 28px;
  border: 1px solid rgba(201, 160, 70, 0.12);
  background: rgba(13, 30, 63, 0.4);
  position: relative;
  transition: all 0.4s;
}

.sponsor-tier:hover {
  background: rgba(13, 30, 63, 0.8);
  border-color: rgba(201, 160, 70, 0.3);
}

.sponsor-tier.featured {
  background: linear-gradient(135deg, rgba(201, 160, 70, 0.12), rgba(201, 160, 70, 0.04));
  border-color: rgba(201, 160, 70, 0.4);
}

.tier-badge {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  /* ← tier badge font size */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid currentColor;
}

.tier-badge.platinum {
  color: #e5e4e2;
  border-color: #e5e4e220;
}

.tier-badge.gold-t {
  color: var(--gold);
  border-color: rgba(201, 160, 70, 0.4);
}

.tier-badge.silver {
  color: #b0b0b0;
  border-color: #b0b0b020;
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin: 10px 0 6px;
}

.tier-subtitle {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.tier-benefits {
  list-style: none;
}

.tier-benefits li {
  font-size: 13px;
  color: var(--white-dim);
  padding: 7px 0;
  border-bottom: 1px solid rgba(242, 237, 230, 0.06);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tier-benefits li:last-child {
  border-bottom: none;
}

.tier-benefits li::before {
  content: '—';
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.sponsor-value-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* adjust columns here */
  gap: 2px;
  margin-top: 48px;
}

.sponsor-value-item {
  background: var(--white-faint);
  padding: 32px 28px;
  border: 1px solid rgba(201, 160, 70, 0.08);
}

.sponsor-value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sponsor-value-label {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

.sponsor-contact {
  text-align: center;
  margin-top: 60px;
}

.sponsor-contact-label {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sponsor-contact-email {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Silver Partner Spotlight Section */
.silver-partner-spotlight {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(7, 16, 42, 0.8) 0%, rgba(7, 16, 42, 0.6) 100%);
  border: 1px solid rgba(201, 160, 70, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.silver-partner-spotlight:hover {
  border-color: rgba(201, 160, 70, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.silver-partner-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.silver-partner-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 70, 0.5), transparent);
}

.silver-partner-badge {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  background: rgba(201, 160, 70, 0.1);
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(201, 160, 70, 0.3);
  white-space: nowrap;
}

.silver-partner-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.silver-partner-logo {
  flex: 0 0 250px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.silver-partner-logo a {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.silver-partner-logo a:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.silver-partner-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.silver-partner-info {
  flex: 1;
}

.silver-partner-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.silver-partner-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.silver-partner-description strong {
  color: var(--gold);
}

.silver-partner-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 160, 70, 0.2);
}

.contact-item {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-label {
  color: var(--gold);
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  min-width: 60px;
}

.contact-value {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .silver-partner-spotlight {
    padding: 30px;
    margin-top: 50px;
  }

  .silver-partner-content {
    gap: 30px;
  }

  .silver-partner-logo {
    flex: 0 0 160px;
  }

  .silver-partner-logo img {
    max-width: 140px;
  }

  .silver-partner-name {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .silver-partner-spotlight {
    padding: 24px;
    margin-top: 40px;
  }

  .silver-partner-header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .silver-partner-badge {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 6px 16px;
    white-space: nowrap;
  }

  .silver-partner-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .silver-partner-logo {
    flex: 0 0 auto;
  }

  .silver-partner-name {
    font-size: 20px;
    text-align: center;
  }

  .silver-partner-description {
    font-size: 13px;
    text-align: left;
  }

  .silver-partner-contact {
    text-align: left;
  }

  .contact-label {
    min-width: 55px;
  }
}

@media (max-width: 576px) {
  .silver-partner-spotlight {
    padding: 20px;
  }

  .silver-partner-badge {
    font-size: 8px;
    letter-spacing: 2px;
    padding: 4px 12px;
  }

  .silver-partner-name {
    font-size: 18px;
  }

  .silver-partner-description {
    font-size: 12px;
  }

  .contact-item {
    font-size: 12px;
  }

  .contact-label {
    min-width: 50px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0px);
}

.modal-content {
  background: linear-gradient(135deg, #07102a 0%, #0a1440 100%);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fff;
}

/* Modal Bio Content */
.modal-speaker-name {
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}

.modal-speaker-position {
  font-size: 16px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(201, 160, 70, 0.3);
}

.modal-speaker-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
}

/* Make speaker cards clickable */
.speaker-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.speaker-card:hover {
  transform: translateY(-5px);
}

/* Remove bio from speaker card */
.speaker-bio {
  display: none;
}

/* ============================================================
   ORGANIZED BY SECTION
   ============================================================ */
.organizers-section {
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
  position: relative;
  overflow: hidden;
}

.organizers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 160, 70, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.organizers-header {
  text-align: center;
  margin-bottom: 60px;
}

.organizers-header .section-label {
  justify-content: center;
}

.organizers-header .section-title {
  max-width: 700px;
  margin: 0 auto;
}

.organizers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.organizer-card {
  background: rgba(7, 16, 42, 0.7);
  border: 1px solid rgba(201, 160, 70, 0.18);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}

.organizer-card:hover {
  border-color: rgba(201, 160, 70, 0.4);
}

.organizer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.organizer-card.card-gold::before {
  background: linear-gradient(to right, transparent, rgba(201, 160, 70, 0.5), transparent);
}

.organizer-card.card-cyan::before {
  background: linear-gradient(to right, transparent, rgba(61, 214, 245, 0.4), transparent);
}

.organizer-role-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.organizer-role-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.organizer-profile {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.organizer-photo {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201, 160, 70, 0.25);
  display: block;
}

.organizer-info {
  flex: 1;
}

.organizer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.organizer-title {
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white-dim);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(201, 160, 70, 0.25);
  padding: 6px 12px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.linkedin-btn:hover {
  border-color: rgba(201, 160, 70, 0.7);
  color: var(--gold);
}

.organizer-logo {
  height: 44px;
  /* ← resize organizer logos in bio cards */
  width: auto;
  object-fit: contain;
  display: block;
}

.organizer-bio {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.organizer-bio:last-child {
  margin-bottom: 0;
}

.organizer-bio strong {
  color: var(--white);
}

.organizer-bio a {
  color: var(--gold);
  text-decoration: none;
}

.organizer-bio a:hover {
  text-decoration: underline;
}

/* ============================================================
   EVENT CO-ORDINATORS SECTION
   ============================================================ */

/* Header Styles */
.coordinators-header {
  margin-top: 40px;
}

.coordinators-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

.coordinators-title .italic {
  font-style: italic;
  color: var(--gold);
}

/* Coordinator Cards Grid */
.coordinators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Coordinator Card Base */
.coordinator-card {
  background: rgba(7, 16, 42, 0.7);
  border: 1px solid rgba(201, 160, 70, 0.18);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.coordinator-card:hover {
  border-color: rgba(201, 160, 70, 0.4);
  background: rgba(13, 30, 63, 0.8);
}

.coordinator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 160, 70, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.coordinator-card:hover::before {
  opacity: 1;
}

/* Role Label */
.coordinator-role-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-label-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Profile Layout */
.coordinator-profile {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

/* Photo */
.coordinator-photo {
  flex-shrink: 0;
  width: 180px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(201, 160, 70, 0.25);
  display: block;
  transition: all 0.3s ease;
}

.coordinator-card:hover .coordinator-photo {
  border-color: rgba(201, 160, 70, 0.6);
}

/* Info */
.coordinator-info {
  flex: 1;
}

.coordinator-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.coordinator-title {
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Bio */
.coordinator-bio {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.coordinator-bio:last-child {
  margin-bottom: 0;
}

/* LinkedIn Button */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white-dim);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(201, 160, 70, 0.25);
  padding: 6px 12px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.linkedin-btn:hover {
  border-color: rgba(201, 160, 70, 0.7);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .coordinator-card {
    padding: 35px 30px;
  }

  .coordinator-photo {
    width: 150px;
    height: 170px;
  }

  .coordinator-name {
    font-size: 24px;
  }

  .coordinator-title {
    font-size: 12px;
  }

  .coordinator-bio {
    font-size: 13px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  .coordinators-header {
    margin-top: 60px;
  }

  .coordinators-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .coordinators-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coordinator-card {
    padding: 30px 25px;
  }

  .coordinator-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .coordinator-photo {
    width: 160px;
    height: 180px;
  }

  .coordinator-info {
    text-align: center;
    width: 100%;
  }

  .coordinator-name {
    font-size: 25px;
  }

  .coordinator-bio {
    text-align: left;
  }

  .linkedin-btn {
    margin: 0 auto 12px auto;
    width: fit-content;
  }
}

/* Mobile Large (576px and below) */
@media (max-width: 576px) {
  .coordinators-header {
    margin-top: 50px;
  }

  .coordinators-title {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .coordinator-card {
    padding: 25px 20px;
  }

  .coordinator-photo {
    width: 140px;
    height: 160px;
  }

  .coordinator-name {
    font-size: 22px;
  }

  .coordinator-title {
    font-size: 11px;
  }

  .coordinator-bio {
    font-size: 12px;
    line-height: 1.65;
  }

  .coordinator-role-label {
    font-size: 10px;
    margin-bottom: 20px;
  }

  .role-label-line {
    width: 15px;
  }
}

/* Mobile Small (400px and below) */
@media (max-width: 400px) {
  .coordinator-card {
    padding: 20px 16px;
  }

  .coordinator-photo {
    width: 120px;
    height: 140px;
  }

  .coordinator-name {
    font-size: 20px;
  }

  .coordinator-bio {
    font-size: 11px;
    line-height: 1.6;
  }

  .coordinator-role-label {
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .linkedin-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Landscape Mode */
@media (max-width: 768px) and (orientation: landscape) {
  .coordinator-profile {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .coordinator-photo {
    width: 130px;
    height: 150px;
  }

  .coordinator-info {
    text-align: left;
  }

  .linkedin-btn {
    margin: 0 0 12px 0;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .coordinator-card {
    padding: 55px 48px;
  }

  .coordinator-photo {
    width: 200px;
    height: 220px;
  }

  .coordinator-name {
    font-size: 30px;
  }

  .coordinator-title {
    font-size: 14px;
  }

  .coordinator-bio {
    font-size: 15px;
    line-height: 1.9;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .coordinator-card,
  .coordinator-card:hover,
  .coordinator-photo,
  .linkedin-btn {
    transition: none;
    transform: none;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 160, 70, 0.08) 0%, transparent 70%);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 60px;
  position: relative;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title .gold-italic {
  color: var(--gold);
  font-style: italic;
}

.cta-body {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact {
  margin-top: 48px;
}

.cta-contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-contact-email {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 160, 70, 0.15);
  padding: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.8;
}

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 237, 230, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 12px;
  color: rgba(242, 237, 230, 0.3);
}

.consent-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.consent-overlay.open {
  display: flex;
}

.consent-modal {
  background: #0d1e3f;
  border: 1px solid rgba(201, 160, 70, 0.3);
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 160, 70, 0.3) transparent;
}

.consent-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.consent-close:hover {
  color: var(--gold);
}

.consent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  padding-right: 30px;
  line-height: 1.3;
}

.consent-body p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.consent-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px 0 8px;
}

.consent-body a {
  color: var(--gold);
  text-decoration: none;
}

.consent-body a:hover {
  text-decoration: underline;
}

.consent-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 160, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.consent-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.consent-checkbox-label input[type="checkbox"] {
  display: none;
}

.consent-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(201, 160, 70, 0.5);
  border-radius: 4px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.consent-checkbox-label input:checked+.consent-checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.consent-checkbox-label input:checked+.consent-checkbox-custom::after {
  content: '✓';
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}

.consent-checkbox-text {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.4;
}

.consent-accept-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.consent-accept-btn:disabled {
  background: rgba(201, 160, 70, 0.3);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.consent-accept-btn:not(:disabled):hover {
  background: #e8b84b;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}

/* ============================================================
   MOBILE RESPONSIVE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    font-size: 11px;
    padding: 8px 16px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-eyebrow {
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 20px;
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 40px);
    white-space: normal;
  }

  .hero-sub {
    white-space: normal;
  }

  .hero-meta {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .meta-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section-inner {
    padding: 60px 20px;
  }

  .gold-divider {
    padding: 0 20px;
  }

  .about-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .themes-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-tiers {
    grid-template-columns: 1fr;
  }

  .sponsor-value-grid {
    grid-template-columns: 1fr;
  }

  .vp-grid-top,
  .vp-grid-bottom {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0;
  }

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

  .organizer-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-inner {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .hero-title {
    font-size: clamp(20px, 8vw, 36px);
    white-space: normal;
  }

  .audience-tags {
    gap: 8px;
  }

  .audience-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-dim);
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 160, 70, 0.2);
}

.social-icon-link:hover {
  color: var(--gold);
  background: rgba(201, 160, 70, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   CLEAN AGENDA DESIGN - NO ICONS
   ============================================================ */

.agenda-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.agenda-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 160, 70, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.agenda-header {
  text-align: center;
  margin-bottom: 60px;
}

.agenda-header .section-label {
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.agenda-header .section-label::before {
  width: 40px;
}

.agenda-header .section-title {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: clamp(38px, 5vw, 58px);
}

.agenda-subtitle {
  font-size: 16px;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Timeline Container */
.agenda-timeline {
  max-width: 900px;
  margin: 0 auto;
}

/* Track Styles */
.timeline-track {
  background: rgba(7, 16, 42, 0.5);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(201, 160, 70, 0.12);
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(13, 30, 63, 0.6);
  border-bottom: 1px solid rgba(201, 160, 70, 0.15);
}

.track-label {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.track-time {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  background: rgba(61, 214, 245, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Track Sessions */
.track-sessions {
  padding: 20px 24px;
}

/* Individual Session Card */
.agenda-session {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 18px 20px;
  margin-bottom: 8px;
  background: transparent;
  border-bottom: 1px solid rgba(201, 160, 70, 0.06);
  transition: all 0.25s ease;
}

.agenda-session:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.agenda-session:hover {
  background: rgba(61, 214, 245, 0.03);
  border-radius: 12px;
  padding-left: 24px;
}

.agenda-session.featured {
  background: rgba(201, 160, 70, 0.04);
  border-radius: 12px;
  border-left: 2px solid var(--gold);
  margin-bottom: 0;
}

.agenda-session.parallel {
  background: rgba(61, 214, 245, 0.03);
  border-radius: 12px;
  border-left: 2px solid var(--cyan);
}

/* Session Time */
.session-time {
  flex-shrink: 0;
  min-width: 140px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
}

.time-start,
.time-end {
  color: var(--cyan);
  font-weight: 500;
}

.time-separator {
  color: var(--gold);
  opacity: 0.5;
  font-size: 12px;
}

/* Session Content */
.session-content {
  flex: 1;
  display: flex;
  gap: 16px;
}

.session-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 40px;
}

.session-details {
  flex: 1;
}

.session-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.session-type {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(201, 160, 70, 0.12);
  color: var(--gold);
  letter-spacing: 0.05em;
}

.session-type.keynote {
  background: rgba(201, 160, 70, 0.2);
  color: var(--gold);
}

.session-type.panel {
  background: rgba(61, 214, 245, 0.1);
  color: var(--cyan);
}

.session-type.showcase {
  background: rgba(201, 160, 70, 0.15);
  color: var(--gold);
}

.session-badge {
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(61, 214, 245, 0.1);
  color: var(--cyan);
}

.session-badge.invite-only {
  background: rgba(201, 160, 70, 0.12);
  color: var(--gold);
  display: inline-block;
  margin-top: 12px;
}

/* Parallel Sessions */
.session-badge-parallel {
  display: inline-block;
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(61, 214, 245, 0.12);
  color: var(--cyan);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.parallel-sessions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 10px;
}

.parallel-session-item {
  padding: 12px 16px;
  background: rgba(7, 16, 42, 0.5);
  border-radius: 10px;
  border-left: 2px solid var(--gold);
  transition: all 0.25s ease;
}

.parallel-session-item:hover {
  background: rgba(61, 214, 245, 0.05);
  border-left-color: var(--cyan);
}

.parallel-info strong {
  display: block;
  font-size: 14px;
  color: var(--cyan);
  margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
}

.parallel-info span {
  font-size: 13px;
  color: var(--white-dim);
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
}

.parallel-takeaway {
  font-size: 11px;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.03em;
}

/* Lunch Break */
.timeline-break {
  background: rgba(13, 30, 63, 0.6);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 30px;
  border: 1px solid rgba(201, 160, 70, 0.15);
  text-align: center;
}

.break-time {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.break-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 6px;
}

.break-desc {
  font-size: 13px;
  color: var(--white-dim);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .agenda-header {
    margin-bottom: 40px;
  }

  .agenda-subtitle {
    font-size: 14px;
  }

  .agenda-session {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .session-time {
    min-width: auto;
  }

  .session-content {
    flex-direction: column;
    gap: 8px;
  }

  .session-number {
    display: none;
  }

  .track-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 20px;
  }

  .track-sessions {
    padding: 16px;
  }

  .track-label {
    font-size: 12px;
  }

  .track-time {
    font-size: 11px;
  }

  .parallel-session-item {
    padding: 10px 14px;
  }

  .parallel-info strong {
    font-size: 13px;
  }

  .parallel-info span {
    font-size: 12px;
  }

  .timeline-break {
    padding: 16px 20px;
  }

  .break-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .agenda-session {
    padding: 14px;
  }

  .session-title {
    font-size: 15px;
  }

  .time-start,
  .time-end {
    font-size: 12px;
  }

  .session-type,
  .session-badge {
    font-size: 9px;
    padding: 2px 8px;
  }

  .parallel-sessions {
    gap: 10px;
  }

  .parallel-takeaway {
    font-size: 10px;
  }

  .break-title {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .agenda-timeline {
    max-width: 1000px;
  }

  .session-title {
    font-size: 18px;
  }

  .session-time {
    font-size: 14px;
    min-width: 150px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .agenda-session,
  .agenda-session:hover,
  .parallel-session-item {
    transition: none;
  }
}