@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  --color-primary: hsl(220, 60%, 12%);
  --color-primary-fg: hsl(0, 0%, 100%);
  --color-secondary: hsl(340, 82%, 52%);
  --color-secondary-fg: hsl(0, 0%, 100%);
  --color-background: hsl(220, 20%, 97%);
  --color-foreground: hsl(220, 30%, 10%);
  --color-muted: hsl(220, 15%, 92%);
  --color-muted-fg: hsl(220, 10%, 45%);
  --color-card: hsl(0, 0%, 100%);
  --color-border: hsl(220, 15%, 88%);
  --color-section-dark: hsl(220, 60%, 8%);
  --color-section-dark-fg: hsl(220, 15%, 85%);
  --color-glow-pink: hsl(340, 82%, 52%);
  --color-glow-blue: hsl(220, 80%, 55%);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --background: 220 20% 97%;
  --foreground: 220 30% 10%;
  --card: 0 0% 100%;
  --secondary: 340 82% 52%;
  --muted-foreground: 220 10% 45%;
  --border: 220 15% 88%;
  --muted: 220 15% 92%;
  --radius: 0.75rem;
  --section-dark: 220 60% 8%;
  --section-dark-foreground: 220 15% 85%;
  --glow-pink: 340 82% 52%;
  --glow-blue: 220 80% 55%;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 0.95; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--color-secondary); height: 2rem;
  display: flex; align-items: center;
}
.top-bar__link {
  color: var(--color-secondary-fg);
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.025em;
  transition: opacity 0.2s;
}
.top-bar__link:hover { opacity: 0.8; }

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed; top: 2rem; left: 0; right: 0; z-index: 99;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 5rem;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header__brand { display: flex; align-items: center; gap: 1rem; }
.header__logo { height: 3rem; }
.header__byline { display: flex; flex-direction: column; gap: 0.1rem; }
.header__byline span { color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 500; line-height: 1; }
.header__cxm-mark { height: 2.5rem; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav-link {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
  letter-spacing: 0.025em;
}
.header__nav-link:hover, .header__nav-link--active { color: #fff; }
.header__nav-link--active { border-bottom: 2px solid #fff; padding-bottom: 0.25rem; }

/* Mobile nav toggle */
.header__mobile-toggle {
  display: none; background: none; border: none; color: #fff; cursor: pointer;
  font-size: 1.5rem;
}
.header__mobile-nav {
  display: none;
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem;
  flex-direction: column; gap: 1rem;
}
.header__mobile-nav.is-open { display: flex; }

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: block; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; border: none; text-decoration: none;
}
.btn--primary {
  background: var(--color-secondary); color: var(--color-secondary-fg);
  padding: 0.875rem 2.5rem; font-size: 1rem;
}
.btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--color-primary-fg);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.875rem 2.5rem; font-size: 1rem;
}
.btn--outline:hover { background: rgba(255,255,255,0.05); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 3rem; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}
.hero__gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsl(220,60%,8%) 0%, hsl(220,50%,15%) 40%, hsl(280,40%,20%) 70%, hsl(340,60%,25%) 100%);
  opacity: 0.5;
}
.hero__content {
  position: relative; z-index: 10; padding: 7rem 0 5rem; max-width: 56rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border-radius: 9999px; padding: 0.5rem 1.25rem; margin-bottom: 2rem;
  color: #fff; font-size: 0.875rem; font-weight: 500;
}
.hero__badge-icon { color: var(--color-secondary); width: 1rem; height: 1rem; }
.hero__badge-sep { color: rgba(255,255,255,0.5); margin: 0 0.25rem; }
.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 700; color: #fff; line-height: 0.9; margin-bottom: 1.25rem;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-glow-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: rgba(255,255,255,0.95); line-height: 1.2; max-width: 48rem; margin-bottom: 2rem;
}
.hero__card {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border-radius: var(--radius-xl); padding: 1.5rem 2rem; max-width: 48rem; margin-bottom: 2.5rem;
}
.hero__card-title { font-size: 1.25rem; color: #fff; font-weight: 500; margin-bottom: 0.75rem; }
.hero__card-text { font-size: 1.0625rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 430px) {
  .hero__content {
    padding: 8rem 1.5rem 5rem;
  }
}

/* ========================================
   Proof Strip
   ======================================== */
.proof-strip { padding: 5rem 0; background: var(--color-background); position: relative; overflow: hidden; }
.proof-strip__accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--color-secondary), rgba(225,50,105,0.5), var(--color-secondary)); }
.proof-strip__grid { display: grid; gap: 1rem; max-width: 52rem; margin: 0 auto 1rem; }
.proof-strip__grid--3 { grid-template-columns: repeat(3, 1fr); }
.proof-strip__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 36rem; }
.proof-strip__card {
  border: 1px solid var(--color-border); background: var(--color-card);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.proof-strip__icon { color: var(--color-secondary); margin: 0 auto 0.75rem; width: 1.25rem; height: 1.25rem; }
.proof-strip__figure { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 0.25rem; }
.proof-strip__label { font-weight: 500; font-size: 1rem; color: var(--color-foreground); margin-bottom: 0.25rem; }
.proof-strip__sub { font-size: 0.875rem; color: var(--color-muted-fg); }
.proof-strip__bottom { text-align: center; border-top: 1px solid var(--color-border); padding-top: 2.5rem; margin-top: 3.5rem; }
.proof-strip__bottom-title { font-family: var(--font-display); font-size: clamp(1.25rem,2.5vw,1.75rem); font-weight: 700; color: var(--color-foreground); display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.proof-strip__bottom-text { font-size: 1.125rem; color: var(--color-muted-fg); max-width: 36rem; margin: 0 auto; }

@media (max-width: 640px) {
  .proof-strip__grid--3, .proof-strip__grid--2 { grid-template-columns: 1fr; }
}

/* ========================================
   Logo Strip
   ======================================== */
.logo-strip { padding: 4rem 0; background: var(--color-muted); overflow: hidden; }
.logo-strip__title {
  font-family: var(--font-display); font-size: clamp(1.5rem,2.5vw,1.75rem);
  font-weight: 700; text-align: center; margin-bottom: 2rem; color: var(--color-foreground);
}
.logo-strip__row {
  position: relative; overflow: hidden; margin-bottom: 1rem;
}
.logo-strip__row::before, .logo-strip__row::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2;
}
.logo-strip__row::before { left: 0; background: linear-gradient(to right, var(--color-muted), transparent); }
.logo-strip__row::after { right: 0; background: linear-gradient(to left, var(--color-muted), transparent); }
.logo-strip__track {
  display: flex; gap: 1rem; width: max-content;
}
.logo-strip__track--left { animation: scrollLeft var(--duration, 35s) linear infinite; }
.logo-strip__track--right { animation: scrollRight var(--duration, 35s) linear infinite; }
.logo-strip__tile {
  flex-shrink: 0; width: 14rem; height: 7rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.06); background: var(--color-card);
  border-radius: var(--radius-xl); padding: 0 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.logo-strip__tile img { max-height: 3.5rem; width: auto; object-fit: contain; }

@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

/* ========================================
   Why Exists Section
   ======================================== */
.why-exists { padding: 8rem 0; background: var(--color-muted); }
.why-exists__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 72rem; margin: 0 auto; align-items: start; }
.why-exists__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; line-height: 1.1; }
.why-exists__intro { font-size: 1.25rem; color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.why-exists__point {
  display: flex; align-items: flex-start; gap: 1.25rem;
  border: 1px solid var(--color-border); background: var(--color-card);
  border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.25rem;
}
.why-exists__point-icon {
  width: 3rem; height: 3rem; border-radius: var(--radius); flex-shrink: 0;
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary);
}
.why-exists__point-text { font-size: 1.125rem; color: var(--color-muted-fg); padding-top: 0.5rem; }
.why-exists__closing { font-size: 1.125rem; color: var(--color-muted-fg); margin-top: 0.5rem; }
.why-exists__closing strong { color: var(--color-foreground); font-weight: 600; }
.why-exists__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.why-exists__photo { border-radius: var(--radius-xl); overflow: hidden; }
.why-exists__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.why-exists__photo--wide { grid-column: span 2; }
.why-exists__photo--wide img { aspect-ratio: 21/9; }
.why-exists__bottom {
  text-align: center; max-width: 52rem; margin: 4rem auto 0;
}
.why-exists__bottom-text {
  font-family: var(--font-display); font-size: clamp(1.25rem,2.5vw,1.75rem);
  font-weight: 600; color: var(--color-foreground); line-height: 1.3;
}
.why-exists__bottom-line {
  width: 6rem; height: 4px; border-radius: 2px; background: var(--color-secondary);
  margin: 1rem auto 0;
}
@media (max-width: 1024px) {
  .why-exists__grid { grid-template-columns: 1fr; }
}

/* ========================================
   Different Section (Strategic Reset)
   ======================================== */
.different { padding: 8rem 0; background: var(--color-section-dark); color: var(--color-section-dark-fg); }
.different__header { text-align: center; max-width: 48rem; margin: 0 auto 1.5rem; }
.different__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.different__intro { font-size: 1.25rem; color: var(--color-section-dark-fg); opacity: 0.7; }
.different__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 64rem; margin: 3.5rem auto 0; }
.different__card {
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); border-radius: var(--radius-xl); padding: 2rem; text-align: center;
}
.different__card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius-xl);
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--color-secondary);
}
.different__card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-primary-fg); margin-bottom: 0.75rem; }
.different__card-text { color: var(--color-section-dark-fg); opacity: 0.7; font-size: 1rem; line-height: 1.6; }
.different__closing {
  text-align: center; max-width: 36rem; margin: 3.5rem auto 0;
  font-size: 1.25rem; font-weight: 500; color: var(--color-primary-fg);
}
@media (max-width: 768px) {
  .different__cards { grid-template-columns: 1fr; }
}

/* ========================================
   Expo Ribbon
   ======================================== */
.expo-ribbon {
  padding: 1.25rem 0; background: var(--color-secondary); overflow: hidden; position: relative;
}
.expo-ribbon__track {
  display: flex; white-space: nowrap; animation: scrollLeft 30s linear infinite;
}
.expo-ribbon__item {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--color-secondary-fg); letter-spacing: 0.25em; text-transform: uppercase;
}
.expo-ribbon__sep { margin: 0 1.5rem; opacity: 0.4; font-size: 0.75rem; color: var(--color-secondary-fg); }

/* ========================================
   Expo Section
   ======================================== */
.expo { padding: 8rem 0; background: var(--color-muted); overflow: hidden; }
.expo__header { text-align: center; max-width: 52rem; margin: 0 auto 3rem; }
.expo__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; line-height: 1.05; }
.expo__text { font-size: 1.125rem; color: var(--color-muted-fg); margin-bottom: 1rem; line-height: 1.6; }
.expo__photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; max-width: 64rem; margin: 0 auto 3.5rem; }
.expo__photo { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/2; }
.expo__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.expo__photo img:hover { transform: scale(1.05); }
.expo__footer { text-align: center; }
.expo__footer-text { font-size: 1.125rem; font-weight: 500; color: var(--color-foreground); margin-bottom: 2rem; }
@media (max-width: 640px) {
  .expo__photos { grid-template-columns: repeat(2,1fr); }
}

/* ========================================
   Why Attend
   ======================================== */
.why-attend { padding: 8rem 0; background: var(--color-background); }
.why-attend__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 72rem; margin: 0 auto; align-items: center; }
.why-attend__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 2.5rem; }
.why-attend__item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.why-attend__check {
  width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary); margin-top: 0.125rem;
}
.why-attend__item-text { font-size: 1.125rem; color: var(--color-foreground); }
.why-attend__photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.why-attend__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
@media (max-width: 1024px) {
  .why-attend__grid { grid-template-columns: 1fr; }
  .why-attend__photo { display: none; }
}

/* ========================================
   The Room
   ======================================== */
.the-room { position: relative; padding: 8rem 0; overflow: hidden; }
.the-room__bg { position: absolute; inset: 0; }
.the-room__bg img { width: 100%; height: 100%; object-fit: cover; }
.the-room__bg-overlay { position: absolute; inset: 0; background: rgba(17,24,39,0.7); }
.the-room__panel {
  position: relative; z-index: 10; max-width: 64rem; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(17,24,39,0.8); backdrop-filter: blur(20px);
  border-radius: calc(var(--radius-xl)*1.25); padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.the-room__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.the-room__intro { font-size: 1.25rem; color: rgba(255,255,255,0.75); max-width: 36rem; margin-bottom: 3.5rem; }
.the-room__responsibilities { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; margin-bottom: 3.5rem; }
.the-room__resp-item {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.the-room__resp-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--color-secondary); flex-shrink: 0; }
.the-room__resp-text { font-size: 1.125rem; font-weight: 500; color: var(--color-primary-fg); }
.the-room__peer-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.the-room__peer-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 3.5rem; }
.the-room__peer-card {
  display: flex; align-items: flex-start; gap: 1rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl); padding: 1.25rem;
}
.the-room__peer-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: rgba(225,50,105,0.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--color-secondary);
}
.the-room__peer-text { font-size: 1rem; font-weight: 500; color: var(--color-primary-fg); line-height: 1.3; }
.the-room__footer { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; }
.the-room__footer-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.the-room__footer-text { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--color-primary-fg); max-width: 36rem; line-height: 1.3; }
@media (max-width: 768px) {
  .the-room__panel { padding: 1.5rem; }
  .the-room__responsibilities { grid-template-columns: 1fr; }
  .the-room__peer-cards { grid-template-columns: 1fr; }
}

/* ========================================
   Speakers
   ======================================== */
.speakers { padding: 8rem 0; background: var(--color-muted); overflow: hidden; }
.speakers__header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.speakers__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; }
.speakers__text { font-size: 1.25rem; color: var(--color-muted-fg); }
.speakers__footer { text-align: center; }
.speakers__coming { font-size: 1.125rem; color: var(--color-muted-fg); margin-bottom: 2.5rem; }


/* Container */
.speakers-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Section wrapper */
.speakers-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: hsl(var(--muted) / 0.5);
  overflow: hidden;
}

/* Header */
.speakers-section__header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem auto;
}

.speakers-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.speakers-section__description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Grid */
.speakers-section__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 1152px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .speakers-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .speakers-section__description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .speakers-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Speaker Card */
.speaker-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 30px -5px hsl(var(--glow-pink) / 0.35);
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.speaker-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.speaker-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

@media (max-width: 430px) {
  .speaker-card__image {
    aspect-ratio: auto;
  }
}

.speaker-card__info {
  background-color: hsl(var(--section-dark-foreground) / 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid hsl(var(--section-dark-foreground) / 0.15);
  padding: 1rem 1.25rem;
  height: 100%;
}

.speaker-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--foreground));
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  margin: 0;
}

.speaker-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.25rem 0 0 0;
}

.speaker-card__company {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--secondary));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0.25rem 0 0 0;
}

/* Stagger delays for animation */
.speaker-card:nth-child(4n+1) { transition-delay: 0s; }
.speaker-card:nth-child(4n+2) { transition-delay: 0.08s; }
.speaker-card:nth-child(4n+3) { transition-delay: 0.16s; }
.speaker-card:nth-child(4n+4) { transition-delay: 0.24s; }

/* ========================================
   Venue
   ======================================== */
.venue { padding: 8rem 0; background: var(--color-background); }
.venue__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 72rem; margin: 0 auto; align-items: center; }
.venue__label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.venue__label-icon { color: var(--color-secondary); }
.venue__label-text { font-family: var(--font-display); font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-secondary); font-weight: 600; }
.venue__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; }
.venue__text { font-size: 1.125rem; color: var(--color-muted-fg); margin-bottom: 1rem; line-height: 1.6; }
.venue__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-secondary); font-weight: 600; font-size: 1.125rem; transition: opacity 0.2s; }
.venue__link:hover { opacity: 0.8; }
.venue__photos { display: flex; flex-direction: column; gap: 0.75rem; }
.venue__photo { border-radius: var(--radius-xl); overflow: hidden; }
.venue__photo img { width: 100%; object-fit: cover; }
.venue__photo--main img { height: 16rem; }
.venue__photo--secondary img { height: 13rem; }
@media (max-width: 1024px) {
  .venue__grid { grid-template-columns: 1fr; }
}

/* ========================================
   Powered By CXM
   ======================================== */
.powered-by { padding: 4rem 0; background: var(--color-muted); text-align: center; }
.powered-by__logo { height: 3.5rem; display: inline-block; margin-bottom: 1rem; }
.powered-by__text { font-size: 1.0625rem; color: var(--color-muted-fg); max-width: 32rem; margin: 0 auto; }

/* ========================================
   CTA Section
   ======================================== */
.cta { position: relative; padding: 8rem 0; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(17,24,39,0.72);
}
.cta__content {
  position: relative; z-index: 10; text-align: center;
  text-shadow: 0 2px 20px rgba(17,24,39,0.9), 0 1px 6px rgba(17,24,39,0.7);
}
.cta__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.cta__text { font-size: 1.375rem; color: rgba(255,255,255,0.8); max-width: 36rem; margin: 0 auto 3rem; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ========================================
   Footer
   ======================================== */
.footer { background: var(--color-section-dark); color: var(--color-section-dark-fg); padding: 4rem 0; border-top: 1px solid rgba(225,50,105,0.1); }
.footer__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__logo { height: 3rem; }
.footer__byline { display: flex; flex-direction: column; gap: 0.1rem; }
.footer__byline span { color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 500; line-height: 1; }
.footer__cxm-mark { height: 2.5rem; }
.footer__nav-title { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-primary-fg); margin-bottom: 0.75rem; }
.footer__nav-link { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer__nav-link:hover { color: var(--color-secondary); }
.footer__venue-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer__bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ========================================
   Agenda Page
   ======================================== */
.agenda-hero {
  background: linear-gradient(135deg, hsl(220,60%,8%) 0%, hsl(220,50%,15%) 40%, hsl(280,40%,20%) 70%, hsl(340,60%,25%) 100%);
  padding: 8rem 0 5rem; text-align: center;
}
.agenda-hero__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.agenda-hero__text { font-size: 1.25rem; color: rgba(255,255,255,0.7); max-width: 48rem; margin: 0 auto; }
.themes { padding: 6rem 0; background: var(--color-background); }
.themes__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 3.5rem; color: var(--color-foreground); }
.themes__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.themes__card { border: 1px solid var(--color-border); background: var(--color-card); border-radius: var(--radius-xl); padding: 1.75rem; }
.themes__card-icon { width: 3rem; height: 3rem; border-radius: var(--radius); background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-secondary); }
.themes__card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 0.5rem; }
.themes__card-text { font-size: 0.875rem; color: var(--color-muted-fg); line-height: 1.6; }
.agenda-statement { padding: 5rem 0; background: var(--color-muted); text-align: center; }
.agenda-statement__subtle { font-size: 1.0625rem; color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.agenda-statement__bold { font-size: 1.375rem; font-weight: 500; color: var(--color-foreground); }
.agenda-cta { padding: 5rem 0; background: var(--color-section-dark); text-align: center; }
.agenda-cta__title { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 2rem; }
@media (max-width: 768px) {
  .themes__grid { grid-template-columns: 1fr; }
}

/* ========================================
   Tickets Page
   ======================================== */
.tickets-hero { padding: 8rem 0 4rem; background: var(--color-section-dark); text-align: center; }
.tickets-hero__label { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; color: var(--color-secondary); margin-bottom: 1rem; }
.tickets-hero__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.tickets-hero__text { font-size: 1.25rem; color: rgba(255,255,255,0.7); max-width: 36rem; margin: 0 auto; }
.tickets { padding: 5rem 0; background: var(--color-background); }
.tickets__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 52rem; margin: 0 auto; }
.ticket-card {
  border: 1px solid var(--color-border); background: var(--color-card);
  border-radius: calc(var(--radius-xl)*1.25); padding: 2.5rem;
  display: flex; flex-direction: column;
}
.ticket-card--vip {
  border: 2px solid rgba(225,50,105,0.4);
  box-shadow: 0 0 40px -10px rgba(225,50,105,0.2);
}
.ticket-card__icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius-xl);
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--color-secondary);
}
.ticket-card__name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--color-foreground); margin-bottom: 0.5rem; }
.ticket-card__price { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--color-foreground); margin-bottom: 0.25rem; }
.ticket-card__vat { font-size: 0.875rem; color: var(--color-muted-fg); margin-bottom: 2rem; }
.ticket-card__perks { flex: 1; margin-bottom: 2.5rem; }
.ticket-card__perk { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.ticket-card__perk-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary); margin-top: 0.125rem;
}
.ticket-card__perk-text { font-size: 1rem; color: var(--color-foreground); }
.ticket-qualify { padding: 5rem 0; background: var(--color-muted); }
.ticket-qualify__inner { max-width: 48rem; margin: 0 auto; }
.ticket-qualify__title { font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.25rem); font-weight: 700; color: var(--color-foreground); margin-bottom: 1.5rem; }
.ticket-qualify__text { font-size: 1.125rem; color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.ticket-qualify__subtitle { font-size: 1.125rem; font-weight: 500; color: var(--color-foreground); margin-bottom: 1rem; }
.ticket-qualify__note {
  border: 1px solid var(--color-border); background: var(--color-card);
  border-radius: var(--radius-xl); padding: 1.5rem; margin-top: 2rem;
}
.ticket-qualify__note-text { font-size: 1rem; color: var(--color-muted-fg); }
.ticket-qualify__note-text a { color: var(--color-secondary); font-weight: 500; }
.ticket-qualify__note-text a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .tickets__grid { grid-template-columns: 1fr; }
}

/* ========================================
   Sponsorship Page
   ======================================== */
.sponsorship-hero {
  background: linear-gradient(135deg, hsl(220,60%,8%) 0%, hsl(220,50%,15%) 40%, hsl(280,40%,20%) 70%, hsl(340,60%,25%) 100%);
  padding: 8rem 0 5rem; text-align: center;
}
.sponsorship-hero__title { font-size: clamp(2rem,5vw,4rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; line-height: 0.95; }
.sponsorship-hero__text { font-size: 1.25rem; color: rgba(255,255,255,0.7); max-width: 36rem; margin: 0 auto 2.5rem; }
.curated { padding: 6rem 0; background: var(--color-background); }
.curated__intro { font-size: 1.25rem; font-weight: 700; text-align: center; max-width: 48rem; margin: 0 auto 4rem; color: var(--color-foreground); }
.curated__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.curated__card {
  border: 1px solid var(--color-border); background: var(--color-card);
  border-radius: var(--radius-xl); padding: 2rem; text-align: center;
}
.curated__card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: var(--radius-xl);
  background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--color-secondary);
}
.curated__card-text { font-size: 1.25rem; font-weight: 500; color: var(--color-foreground); }
.curated__closing { font-size: 1.25rem; color: var(--color-muted-fg); text-align: center; max-width: 36rem; margin: 0 auto; }
.roi { padding: 6rem 0; background: var(--color-section-dark); }
.roi__title { font-family: var(--font-display); font-size: clamp(1.75rem,4vw,3rem); font-weight: 700; text-align: center; color: var(--color-primary-fg); margin-bottom: 4rem; }
.roi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.roi__card {
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); border-radius: var(--radius-xl); padding: 2rem;
}
.roi__card-icon { width: 3rem; height: 3rem; border-radius: var(--radius); background: rgba(225,50,105,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-secondary); }
.roi__card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-primary-fg); margin-bottom: 0.5rem; }
.roi__card-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.roi__card-point { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 0.5rem; }
.roi__card-bullet { color: var(--color-secondary); margin-top: 0.25rem; flex-shrink: 0; }
.sponsorship-cta { padding: 6rem 0; background: var(--color-section-dark); }
.sponsorship-cta__inner { display: flex; gap: 4rem; max-width: 64rem; margin: 0 auto; align-items: flex-start; }
.sponsorship-cta__content { flex: 1; }
.sponsorship-cta__title { font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; color: var(--color-primary-fg); margin-bottom: 1.5rem; }
.sponsorship-cta__text { font-size: 1.25rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.sponsorship-cta__goal { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.sponsorship-cta__goal-icon { color: var(--color-secondary); }
.sponsorship-cta__goal-text { font-size: 1.125rem; color: rgba(255,255,255,0.9); }
.sponsorship-cta__early { font-size: 1.125rem; color: rgba(255,255,255,0.6); margin: 2rem 0 2.5rem; }
.jordan-card {
  width: 340px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); border-radius: calc(var(--radius-xl)*1.25); padding: 2rem;
  text-align: center; position: sticky; top: 7rem;
}
.jordan-card__photo-wrap { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.jordan-card__glow {
  position: absolute; inset: -0.5rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(225,50,105,0.4), rgba(66,133,244,0.3));
  filter: blur(16px);
}
.jordan-card__photo {
  position: relative; width: 6rem; height: 6rem; border-radius: 50%;
  border: 2px solid rgba(225,50,105,0.3); overflow: hidden;
}
.jordan-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.jordan-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-primary-fg); margin-bottom: 0.25rem; }
.jordan-card__role { font-size: 1rem; font-weight: 500; color: var(--color-secondary); margin-bottom: 1rem; }
.jordan-card__desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.jordan-card__buttons { display: flex; flex-direction: column; gap: 0.5rem; }
@media (max-width: 1024px) {
  .sponsorship-cta__inner { flex-direction: column; }
  .jordan-card { width: 100%; position: static; }
  .curated__grid { grid-template-columns: 1fr; }
  .roi__grid { grid-template-columns: 1fr; }
}

/* ========================================
   SVG Icon Inline Helpers
   ======================================== */
.icon { display: inline-block; width: 1.25rem; height: 1.25rem; vertical-align: middle; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.75rem; height: 1.75rem; }

/* ========================================
   Utility
   ======================================== */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }



/* === Trigger button — matches Button variant="hero" === */
.btn-hero {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2rem;
    border: none; border-radius: var(--radius);
    background: linear-gradient(135deg, hsl(var(--secondary)), hsl(340 82% 42%));
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: opacity 0.2s;
  }
  .btn-hero:hover { opacity: 0.9; }
  
  /* === Dialog overlay — matches DialogOverlay === */
  .dialog-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 50;
    background: rgba(0, 0, 0, 0.8);
  }
  .dialog-overlay.is-open {
    display: block;
    animation: fadeIn 0.2s ease;
  }
  
  /* === Dialog content — matches DialogContent sm:max-w-lg === */
  .dialog-content {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    width: 100%; max-width: 32rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: zoomIn 0.2s ease;
    display: none;
  }
  .dialog-overlay.is-open + .dialog-content { display: block; }
  
  /* === Close button — matches DialogPrimitive.Close === */
  .dialog-close {
    position: absolute; right: 1rem; top: 1rem;
    background: none; border: none; cursor: pointer;
    opacity: 0.7; transition: opacity 0.2s; padding: 2px;
    border-radius: 2px;
  }
  .dialog-close:hover { opacity: 1; }
  .dialog-close:focus { outline: 2px solid hsl(var(--secondary)); outline-offset: 2px; }
  .dialog-close svg { width: 16px; height: 16px; color: hsl(var(--foreground)); }
  
  /* === Modal icon — w-12 h-12 rounded-2xl bg-secondary/10 === */
  .modal-icon {
    width: 48px; height: 48px;
    border-radius: 1rem;
    background: hsl(var(--secondary) / 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem;
    color: hsl(var(--secondary));
  }
  
  /* === Title — font-display text-2xl font-bold === */
  .dialog-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0 0 0.375rem;
  }
  
  /* === Description — text-base leading-relaxed === */
  .dialog-desc {
    font-size: 1rem; line-height: 1.625;
    color: hsl(var(--muted-foreground));
    margin: 0 0 1rem;
  }
  
  /* === Label — text-sm font-semibold === */
  .modal-label {
    font-size: 0.875rem; font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0.5rem 0 0.625rem;
  }
  
  /* === Checklist — space-y-2.5 === */
  .modal-checklist { list-style: none; padding: 0; margin: 0 0 1rem; }
  .modal-checklist li {
    display: flex; align-items: flex-start; gap: 0.625rem;
    margin-bottom: 0.625rem;
    font-size: 0.875rem; line-height: 1.5;
    color: hsl(var(--foreground));
  }
  
  /* === Check icon — w-5 h-5 rounded-full bg-secondary/10 === */
  .check-icon {
    width: 20px; height: 20px; min-width: 20px;
    border-radius: 50%;
    background: hsl(var(--secondary) / 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
    color: hsl(var(--secondary));
  }
  .check-icon svg { width: 12px; height: 12px; }
  
  /* === Notice — rounded-xl border border-border bg-muted/50 p-4 === */
  .modal-notice {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--muted) / 0.5);
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .modal-notice p {
    margin: 0; font-size: 0.875rem; line-height: 1.625;
    color: hsl(var(--muted-foreground));
  }
  .modal-notice a {
    color: hsl(var(--secondary)); font-weight: 500; text-decoration: none;
  }
  .modal-notice a:hover { text-decoration: underline; }
  
  /* === CTA — variant="hero" size="lg" w-full py-6 === */
  .modal-cta {
    display: block; width: 100%;
    padding: 1.5rem 1rem;
    border: none; border-radius: var(--radius);
    background: linear-gradient(135deg, hsl(var(--secondary)), hsl(340 82% 42%));
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: opacity 0.2s;
    margin-top: 0.5rem;
  }
  .modal-cta:hover { opacity: 0.9; }
  
  @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
  @keyframes zoomIn { from { opacity: 0; transform: translate(-50%,-50%) scale(0.95) } to { opacity: 1; transform: translate(-50%,-50%) scale(1) } }
