@charset "UTF-8";
/* Colors aligned to the Old Glory Design System v2.0        */
/* Blue: #0A3161 · PMS 282  |  Red: #B31942 · PMS 193       */
:root {
  --black: #14171C; /* OG Gunmetal                  */
  --charcoal: #2A2F36; /* OG Charcoal                  */
  --charcoal-mid: #1B212A; /* OG dark surface              */
  --blue: #1B4D8A; /* OG Blue-500 — primary UI     */
  --blue-hover: #0A3161; /* Old Glory Blue · PMS 282     */
  --blue-tint: #E8EEF6; /* OG Wash Blue                 */
  --blue-dark: #0A3161; /* Old Glory Blue · PMS 282     */
  --red: #B31942; /* Old Glory Red  · PMS 193     */
  --red-hover: #8E1233; /* OG Red-700                   */
  --red-tint: #FBEAEF; /* OG Wash Red                  */
  --gray: #5C6673; /* OG Steel                     */
  --gray-light: #F4F1EA; /* OG Bone                      */
  --gray-border: #E6E9ED; /* OG Mist                      */
  --white: #FFFFFF;
  --font-heading: 'Big Shoulders Display', sans-serif;
  --font-body: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --nav-height: 72px;
  --strip-height: 40px;
  --section-pad: 96px;
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--black);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue-hover);
}

ul {
  list-style: none;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section-light {
  background: var(--gray-light);
}

.section-agenda-preview {
  background: linear-gradient(rgba(245, 245, 247, 0.45), rgba(245, 245, 247, 0.45)), url("../images/speaker-bg.webp") center/cover no-repeat;
}

.section-white {
  background: var(--white);
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: 56px 0;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.5);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
}

.lead-light {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  max-width: 600px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

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

.btn-secondary-dark:hover {
  border-color: var(--gray);
  color: var(--black);
  background: var(--gray-light);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-glass-dark {
  background: rgba(0, 0, 0, 0.12);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-glass-dark:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.btn-glass-blue {
  background: rgba(27, 77, 138, 0.4);
  color: var(--white);
  border: 1px solid rgba(100, 160, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(27, 77, 138, 0.3), inset 0 1px 0 rgba(100, 160, 255, 0.2);
}

.btn-glass-blue:hover {
  background: rgba(27, 77, 138, 0.6);
  color: var(--white);
  border-color: rgba(100, 160, 255, 0.55);
  box-shadow: 0 6px 24px rgba(27, 77, 138, 0.4), inset 0 1px 0 rgba(100, 160, 255, 0.25);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-atf {
  background: var(--red);
  color: var(--white);
}

.badge-fbi {
  background: var(--red);
  color: var(--white);
}

.badge-keynote {
  background: var(--red);
  color: var(--white);
}

.badge-ffl {
  background: var(--blue);
  color: var(--white);
}

.badge-tech {
  background: var(--charcoal-mid);
  color: var(--white);
}

.badge-break {
  background: var(--gray-light);
  color: var(--gray);
  border: 1px solid var(--gray-border);
}

.badge-social {
  background: #1C3A6E;
  color: #A8C4F4;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.88);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--white);
}

.nav-logo-name {
  position: relative;
  padding-left: 15px;
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}

.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  word-spacing: -0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: rgba(27, 77, 138, 0.4);
  color: var(--white) !important;
  border: 1px solid rgba(100, 160, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(27, 77, 138, 0.3), inset 0 1px 0 rgba(100, 160, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

.nav-cta:hover {
  background: rgba(27, 77, 138, 0.6) !important;
  color: var(--white) !important;
  border-color: rgba(100, 160, 255, 0.55);
  box-shadow: 0 6px 24px rgba(27, 77, 138, 0.4), inset 0 1px 0 rgba(100, 160, 255, 0.25);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: flex;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.82);
  z-index: 99;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}

.nav-mobile a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-mobile a:hover {
  color: var(--white);
}

.nav-mobile .nav-cta {
  margin-top: 16px;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.hero {
  min-height: 100vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(31, 106, 235, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(217, 43, 43, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 55%;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 15, 0.65) 38%, rgba(10, 10, 15, 0) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 64px;
  max-width: 740px;
}

.hero-brand {
  display: inline-block;
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin-bottom: 32px;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
}

.hero-brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline .highlight {
  color: var(--blue);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-headline .alert {
  color: var(--red);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.hero-urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero-urgency strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num .unit {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.countdown-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
}

.countdown-units {
  display: flex;
  gap: 4px;
  align-items: center;
}

.countdown-unit {
  text-align: center;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.countdown-unit-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 2px;
}

.countdown-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  margin: 0 2px;
}

.countdown-cta-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

.countdown-cta-link:hover {
  color: var(--white);
}

.agenda-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 32px;
  align-items: start;
}

.agenda-cta-text {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.agenda-cta-cards {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.agenda-cta-actions {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.agenda-cta-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.agenda-cta-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .agenda-cta-grid {
    column-gap: 32px;
  }
}
@media (max-width: 767px) {
  .agenda-cta-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .agenda-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.agenda-day-card {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.agenda-day-card-header {
  background: rgba(20, 22, 28, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 24px;
}

.day-tab-short {
  display: none;
}

.day-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 40px;
}

.day-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.day-tab:hover {
  color: var(--blue);
}

.day-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

@media (max-width: 640px) {
  .day-tab-full {
    display: none;
  }
  .day-tab-short {
    display: inline;
  }
  .day-tab-subtitle {
    display: none !important;
  }
  .day-tab {
    padding: 12px 16px;
    letter-spacing: 0;
  }
}
.day-panel {
  display: none;
}

.day-panel.active {
  display: block;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 8px 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.agenda-item:hover {
  background: var(--gray-light);
}

.agenda-item.keynote-item {
  background: rgba(217, 43, 43, 0.04);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding-left: 17px;
}

.agenda-item.keynote-item:hover {
  background: rgba(217, 43, 43, 0.08);
}

.agenda-item.break-item {
  opacity: 0.6;
}

.agenda-time {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  padding-top: 2px;
  min-width: 0;
}

.agenda-content {
  min-width: 0;
}

.agenda-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.agenda-speaker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.agenda-speaker-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-decoration: none;
  cursor: pointer;
}

.agenda-speaker-link:hover .agenda-speaker-name {
  color: var(--blue);
  text-decoration: underline;
}

.agenda-speaker-name {
  font-size: 13px;
  color: var(--gray);
}

.agenda-desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.5;
}

.agenda-sponsored {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(31, 106, 235, 0.08);
  border: 1px solid rgba(31, 106, 235, 0.2);
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 4px;
}

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

#featuredSpeakers {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  #featuredSpeakers {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.speaker-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 77, 138, 0.35);
}

.speaker-card-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

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

.speaker-card-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: -0.02em;
}

.speaker-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}

.speaker-card-body {
  padding: 20px;
}

.speaker-card-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.2;
}

.speaker-card-title {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 12px;
}

.speaker-card-org {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.speaker-card-session {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.speaker-card-session svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.speaker-card-dark {
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.08);
}

.speaker-card-dark:hover {
  border-color: rgba(31, 106, 235, 0.5);
}

.speaker-card-dark .speaker-card-name {
  color: var(--white);
}

.speaker-card-dark .speaker-card-title {
  color: rgba(255, 255, 255, 0.5);
}

.speaker-card-dark .speaker-card-org {
  color: #5BA3FF;
}

.speaker-card-dark .speaker-card-session {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.06);
}

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

.value-card {
  padding: 0;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(31, 106, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-icon svg {
  stroke: var(--blue);
}

.value-icon.red {
  background: rgba(217, 43, 43, 0.08);
}

.value-icon.red svg {
  stroke: var(--red);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.value-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-num.red {
  color: var(--red);
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
}

.promo-callout {
  background: var(--charcoal);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--blue);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.promo-callout-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.promo-callout-sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 4px;
}

.sponsor-tier-section {
  margin-bottom: 64px;
}

.sponsor-tier-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sponsor-tier-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
}

.sponsor-tier-divider {
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.sponsor-tier-count {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.sponsor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sponsor-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gray-border);
}

.sponsor-card-logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.sponsor-card-logo img {
  max-height: 48px;
  width: auto;
}

.sponsor-card-logo-placeholder {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.sponsor-card-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.sponsor-modal-video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.sponsor-modal-video iframe,
.sponsor-modal-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sponsor-card-video {
  position: relative;
  background: var(--black);
  aspect-ratio: 16/9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card-video-thumb {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.6;
}

.sponsor-card-video-play {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.sponsor-card-video-play:hover {
  transform: scale(1.08);
}

.sponsor-card-video-play svg {
  fill: var(--blue);
  margin-left: 3px;
}

.sponsor-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.sponsor-card-actions {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sponsor-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
  background: var(--red-tint);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.form-row {
  margin-bottom: 16px;
}

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

.form-label .req {
  color: var(--red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 106, 235, 0.1);
}

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

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--blue-hover);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success-check {
  width: 56px;
  height: 56px;
  background: rgba(31, 106, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 14px;
  color: var(--gray);
}

.partner-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--strip-height);
  z-index: 101;
  display: flex;
  align-items: center;
}

.has-top-strip .nav {
  top: var(--strip-height);
}

.has-top-strip .hero {
  padding-top: calc(var(--nav-height) + var(--strip-height));
}

.partner-strip::before,
.partner-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partner-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}

.partner-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}

.partner-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
  will-change: transform;
}

.partner-strip-track:hover {
  animation-play-state: paused;
}

.partner-strip-group {
  display: flex;
  align-items: center;
  padding: 13px 0;
}

.partner-strip-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  padding: 0 28px;
  flex-shrink: 0;
  white-space: nowrap;
}

.partner-strip-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 28px;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
  cursor: default;
}

.partner-strip-name.clickable {
  cursor: pointer;
}

.partner-strip-name.clickable:hover {
  color: rgba(255, 255, 255, 0.9);
}

.partner-strip-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.sponsor-spotlight {
  background: linear-gradient(rgba(245, 245, 247, 0.42), rgba(245, 245, 247, 0.42)), url("../images/dallas-pano.webp") center/cover no-repeat;
  padding: 80px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  overflow-x: clip;
}

.partner-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.partner-showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--black);
  line-height: 0.97;
  letter-spacing: -0.01em;
  margin-top: 6px;
  text-transform: uppercase;
}

.partner-showcase-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.partner-showcase-link:hover {
  color: var(--blue-hover);
}

.partner-logo-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 32px;
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(30, 32, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  flex: 1 1 300px;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.partner-logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.partner-logo-item:hover {
  background: rgba(40, 44, 52, 0.8);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.partner-logo-tier {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
}

.partner-logo-lockup {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.partner-logo-img {
  height: 38px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.partner-logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.partner-logo-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.partner-logo-claim {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(31, 106, 235, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.partner-logo-open {
  background: #222;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}

.partner-logo-open::before {
  background: rgba(255, 255, 255, 0.04);
}

.partner-logo-open:hover {
  background: #272727;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.partner-logo-open .partner-logo-text {
  color: rgba(255, 255, 255, 0.2);
  font-size: 22px;
}

.partner-cards-row.supporting .partner-card-sm[data-aos] {
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.partner-cards-row.supporting .partner-card-sm:nth-child(2)[data-aos] {
  transition: opacity 0.55s ease 120ms, transform 0.55s ease 120ms, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.partner-cards-row.supporting .partner-card-sm:nth-child(3)[data-aos] {
  transition: opacity 0.55s ease 240ms, transform 0.55s ease 240ms, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.partner-cards-row.supporting .partner-card-sm:nth-child(4)[data-aos] {
  transition: opacity 0.55s ease 360ms, transform 0.55s ease 360ms, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.partner-logo-strip .partner-logo-item[data-aos] {
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s, border-color 0.2s;
}

.partner-logo-strip .partner-logo-item:nth-child(2)[data-aos] {
  transition: opacity 0.6s ease 150ms, transform 0.6s ease 150ms, background 0.2s, border-color 0.2s;
}

.partner-logo-strip .partner-logo-item:nth-child(3)[data-aos] {
  transition: opacity 0.6s ease 300ms, transform 0.6s ease 300ms, background 0.2s, border-color 0.2s;
}

.partner-rotating {
  transition: opacity 0.4s ease;
}

.partner-panel {
  display: block;
}

.partner-panel + .partner-panel {
  margin-top: 32px;
}

.partner-panel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray);
  margin-bottom: 16px;
  text-align: center;
}

.partner-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.partner-cards-row.supporting {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}

.partner-cards-row.supporting > * {
  flex: 0 1 calc((100% - 48px) / 4);
}

.partner-cards-row.community {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.partner-cards-row.community > * {
  flex: 0 1 calc((100% - 60px) / 6);
}

.partner-card-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
}

.partner-card-sm:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.partner-card-xs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  min-height: 120px;
}

.partner-card-xs:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.partner-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.partner-card-logo-img {
  max-height: 30px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.partner-card-logo-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
}

.partner-card-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
}

.partner-title-spotlight {
  transition: opacity 0.4s ease;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-spotlight-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.partner-spotlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.partner-spotlight-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
}

.partner-spotlight-logo {
  display: flex;
  align-items: center;
  height: 44px;
  margin: 4px 0;
}

.partner-spotlight-logo img {
  max-height: 36px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.partner-spotlight-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.partner-spotlight-session {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.partner-spotlight-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.partner-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.15s ease;
}

.partner-spotlight-cta:hover {
  color: var(--white);
  gap: 10px;
}

.partner-spotlight-open {
  background: var(--charcoal);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.partner-spotlight-open::before {
  background: rgba(255, 255, 255, 0.07);
}

.partner-card-tbd {
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.07);
  border-style: dashed;
  gap: 8px;
}

.partner-card-tbd:hover {
  background: rgba(31, 106, 235, 0.12);
  border-color: rgba(31, 106, 235, 0.35);
  box-shadow: 0 4px 16px rgba(31, 106, 235, 0.12);
  transform: translateY(-2px);
}

.partner-tbd-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
}

.partner-tbd-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  line-height: 1;
}

.partner-tbd-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(31, 106, 235, 0.55);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.partner-card-tbd:hover .partner-tbd-badge {
  color: rgba(255, 255, 255, 0.4);
}

.partner-card-tbd:hover .partner-tbd-name {
  color: rgba(255, 255, 255, 0.35);
}

.partner-card-tbd:hover .partner-tbd-cta {
  color: var(--blue);
}

.partner-card-tbd-sm {
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.07);
  border-style: dashed;
}

.partner-card-tbd-sm:hover {
  background: rgba(31, 106, 235, 0.1);
  border-color: rgba(31, 106, 235, 0.3);
  transform: translateY(-1px);
}

.partner-tbd-xs-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.05em;
}

.partner-card-tbd-sm:hover .partner-tbd-xs-label {
  color: rgba(255, 255, 255, 0.3);
}

.partner-ribbon {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(15, 15, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 18px 11px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s, border-color 0.25s;
}

.partner-ribbon:hover {
  background: rgba(15, 15, 20, 0.97);
  border-color: rgba(255, 255, 255, 0.15);
}

.partner-ribbon-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
  margin-bottom: 4px;
}

.partner-ribbon-rule {
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.partner-ribbon-item {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 4px 0;
}

.partner-ribbon-item:hover {
  color: rgba(255, 255, 255, 0.85);
}

.partner-band {
  background: linear-gradient(rgba(245, 245, 247, 0.42), rgba(245, 245, 247, 0.42)), url("../images/dallas-pano.webp") center/cover no-repeat;
  border-top: 1px solid var(--gray-border);
  padding: 56px 0;
}

.partner-band-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.partner-band-row {
  margin-top: 24px;
}

.partner-band-row + .partner-band-row {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}

.partner-band .partner-panel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 12px;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 24px;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--black);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.speaker-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.speaker-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.speaker-modal {
  background: transparent;
  border-radius: var(--radius-lg);
  max-width: 660px;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: auto 0;
  height: fit-content;
  transform: scale(0.96) translateY(16px);
  transition: transform 0.22s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.speaker-modal-overlay.open .speaker-modal {
  transform: scale(1) translateY(0);
}

.speaker-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.15s;
  z-index: 2;
}

.speaker-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.speaker-modal-header {
  background: var(--black);
  padding: 28px 28px 0;
}

.speaker-modal-header-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.speaker-modal-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--charcoal);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

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

.sponsor-modal-logo {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 4px 0 2px;
}

.sponsor-modal-logo img {
  max-height: 44px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

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

.speaker-modal-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 10px 0 3px;
  line-height: 1.1;
}

.speaker-modal-title-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.speaker-modal-org-line {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}

.speaker-modal-body {
  background: var(--white);
  padding: 24px 28px 28px;
}

.speaker-modal-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.speaker-modal-bio p + p {
  margin-top: 1em;
}

.speaker-modal-session-box {
  background: var(--blue-tint);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
  padding: 16px 18px;
  margin-bottom: 20px;
}

.speaker-modal-session-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.speaker-modal-session-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 4px;
}

.speaker-modal-session-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.speaker-modal-session-when {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
}

.speaker-modal-footer {
  text-align: center;
}

.reserve-overlay .ticket {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(168deg, #FBF6E9 0%, #F1E9D4 100%);
  color: var(--black);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
  animation: ticketIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ticket-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue) 48%, var(--red));
}

.ticket-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 23, 28, 0.07);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ticket-close:hover {
  background: rgba(20, 23, 28, 0.16);
}

.ticket-body {
  padding: 30px 30px 26px;
  text-align: center;
}

.ticket-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.ticket-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(38px, 12vw, 48px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 8px 0 7px;
  color: var(--black);
}

.ticket-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.ticket-rule {
  width: 46px;
  height: 0;
  border-top: 2px solid rgba(20, 23, 28, 0.28);
  margin: 18px auto;
}

.ticket-price-area {
  margin: 4px 0 6px;
}

.ticket-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}

.ticket-price-old {
  font-size: 22px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: none;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.7;
  position: relative;
  display: inline-block;
}
.ticket-price-old::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: var(--red);
  transform: rotate(18deg);
  transform-origin: center;
}

.ticket-price-now {
  font-size: 52px;
  vertical-align: middle;
}

.ticket-price-per {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  margin-left: 6px;
}

.ticket-eb-flag {
  display: inline-block;
  margin-top: 11px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 3px;
}

.ticket-eb-note {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--gray);
}

.ticket-features {
  list-style: none;
  margin: 20px 0 22px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.ticket-features li {
  position: relative;
  padding-left: 25px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #3A4049;
}

.ticket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
}

.ticket-cta {
  width: 100%;
  justify-content: center;
}

.ticket-charge-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}

.ticket-faq-line {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--gray);
}

.ticket-faq {
  color: var(--blue-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 49, 97, 0.35);
}

.ticket-faq:hover {
  color: var(--red);
  border-color: var(--red);
}

.ticket-perf {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(20, 23, 28, 0.3);
}

.ticket-perf::before,
.ticket-perf::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #15171C;
}

.ticket-perf::before {
  left: -12px;
}

.ticket-perf::after {
  right: -12px;
}

.ticket-stub {
  padding: 18px 30px 24px;
  text-align: center;
}

.ticket-stub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.ticket-stub-admit {
  font-weight: 600;
  color: var(--black);
}

.ticket-stub-fine {
  margin-top: 10px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.03em;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-event-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

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

.accom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 64px;
  row-gap: 32px;
  align-items: start;
}

.accom-cta-text {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.accom-cta-card {
  grid-column: 2;
  grid-row: 1/3;
  align-self: stretch;
  min-width: 0;
}

.accom-cta-card > div {
  height: 100%;
}

.accom-cta-actions {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

@media (max-width: 1024px) {
  .accom-cta-grid {
    column-gap: 32px;
  }
}
@media (max-width: 767px) {
  .accom-cta-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .accom-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .accom-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .ot-feature-btn {
    width: 100% !important;
    justify-content: center;
    flex-shrink: unset !important;
    align-self: stretch !important;
  }
  .hotel-btn-group {
    flex-direction: column;
  }
  .hotel-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}
.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 767px) {
  .venue-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .venue-layout > div:last-child {
    order: -1;
    min-height: 260px;
  }
}
.venue-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.venue-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A2E5A 0%, #0F1D3C 50%, #111111 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.venue-hero-text {
  position: absolute;
  bottom: 36px;
  left: 40px;
  right: 40px;
  z-index: 1;
}

.venue-hero-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.venue-hero-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.thing-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.thing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.thing-card-img {
  height: 160px;
  background: var(--gray-light);
  overflow: hidden;
}

.thing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thing-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-tint) 0%, #C5D5F8 100%);
  font-size: 36px;
}

.thing-card-body {
  padding: 16px;
}

.thing-card-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.thing-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.thing-card-dist {
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes partnerSlideIn {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes ticketIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos=fade-up] {
  transform: translateY(24px);
}

[data-aos=fade-in] {
  transform: translateY(0);
}

[data-aos=fade-left] {
  transform: translateX(300px);
}

[data-aos=fade-right] {
  transform: translateX(-300px);
}

.skip-nav {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-start {
  padding-top: calc(var(--nav-height) + 48px);
}

.section[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--strip-height) + 16px);
}

.maps-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.maps-link:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-12 {
  gap: 12px;
}

.flex-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.icon-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gray);
}

.label-caps {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.glass-overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.alert-box-blue {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--blue-tint);
  border: 1px solid rgba(27, 77, 138, 0.2);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

@media (max-width: 1320px) {
  .partner-ribbon {
    display: none;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .partner-cards-row.supporting > * {
    flex-basis: calc((100% - 16px) / 2);
  }
  .partner-cards-row.community > * {
    flex-basis: calc((100% - 24px) / 3);
  }
}
@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-bar {
    flex-direction: column;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .agenda-time {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .countdown-units {
    gap: 3px;
  }
  .countdown-unit {
    min-width: 44px;
  }
}
@media (max-width: 480px) {
  .partner-cards-row.supporting > * {
    flex-basis: 100%;
  }
  .partner-cards-row.community > * {
    flex-basis: calc((100% - 12px) / 2);
  }
  .speaker-modal-header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .speaker-modal-name {
    font-size: 18px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .venue-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
  .agenda-preview-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
  .speakers-btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}
