:root {
  --primary-color: #B14E91;
  --secondary-color: #3D86A7;
  --accent-color: #8AB9CD;
  --white-color: #FFFFFF;
  --light-background: #F4F6F8;
  --dark-text: #1F2937;
  --primary-dark: #87366D;
  --primary-deep: #632750;
  --secondary-dark: #2D657F;
  --secondary-deep: #214B60;
  --primary-light: #F7EAF3;
  --primary-soft: #FCF6FA;
  --secondary-light: #E8F2F6;
  --secondary-soft: #F3F8FA;
  --accent-light: #EAF3F7;
  --muted-text: #5F6B7A;
  --border-color: #D9E0E6;
  --surface-color: #FFFFFF;
  --dark-background: #17232C;
  --focus-color: #2D657F;
  --shadow-color: rgba(31, 41, 55, 0.12);
}

/* Lightweight Bootstrap-compatible fallback for offline/local rendering. */
.container {
  width: 100%;
  max-width: 1280px;
  padding-inline: 1rem;
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: 0;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-inline: .75rem;
}

.g-3 {
  row-gap: 1rem;
}

.g-4 {
  row-gap: 1.5rem;
}

.g-5 {
  row-gap: 3rem;
}

.g-3 > *,
.g-4 > *,
.g-5 > * {
  margin-bottom: 0;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.inline-flex,
.d-inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.align-items-start {
  align-items: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.gap-2 {
  gap: .5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.me-xl-3 {
  margin-right: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

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

.position-relative {
  position: relative !important;
}

.order-xl-2,
.order-xl-3 {
  order: initial;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  padding: .65rem 1rem;
  font-size: .9rem;
}

.btn-lg {
  padding: 1rem 1.45rem;
  font-size: 1.02rem;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  text-decoration: none;
}

.navbar-collapse {
  display: none;
}

.navbar-toggler {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  background: var(--white-color);
}

.navbar-toggler-icon {
  width: 1.35rem;
  height: 2px;
  background: var(--dark-text);
  box-shadow: 0 -6px 0 var(--dark-text), 0 6px 0 var(--dark-text);
}

.offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1050;
  width: min(88vw, 390px);
  padding: 1.25rem;
  overflow-y: auto;
  background: var(--white-color);
  box-shadow: -1rem 0 2.5rem rgba(31, 41, 55, .18);
  transform: translateX(110%);
  transition: transform .25s ease;
}

.offcanvas.show {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offcanvas-title {
  margin: 0;
}

.btn-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: .4rem;
  background: var(--light-background);
}

.btn-close::before {
  content: "x";
  font-weight: 700;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: .75rem;
  overflow: hidden;
  background: var(--white-color);
}

.accordion-item + .accordion-item {
  margin-top: .75rem;
}

.accordion-button {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0;
  background: var(--white-color);
  color: var(--dark-text);
  text-align: left;
}

.accordion-collapse.collapse {
  display: none;
}

.accordion-collapse.collapse.show {
  display: block;
}

.accordion-body {
  padding: 1rem 1.25rem 1.25rem;
}

.form-check {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

.form-check-input {
  margin-top: .35rem;
}

.form-check-label {
  line-height: 1.5;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 576px) {
  .d-sm-row {
    flex-direction: row !important;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--dark-text);
  background-color: var(--white-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary-deep);
}

a:hover,
a:focus {
  color: var(--primary-deep);
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.btn {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

p {
  line-height: 1.65;
  color: var(--muted-text);
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 2000;
  padding: .75rem 1rem;
  background: var(--dark-background);
  color: var(--white-color);
  border-radius: .5rem;
}

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

:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
}

.announcement-bar {
  background-color: var(--primary-deep);
  color: var(--white-color);
  padding: .45rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: .86rem;
  font-weight: 700;
}

.announcement-link {
  color: var(--white-color);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: .25rem .8rem;
  text-decoration: none;
}

.announcement-link:hover,
.announcement-link:focus {
  color: var(--primary-deep);
  background: var(--white-color);
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 .25rem 1rem rgba(31, 41, 55, .08);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 .75rem 1.5rem rgba(31, 41, 55, .13);
}

.navbar {
  min-height: 5rem;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-lockup {
  flex: 0 0 auto;
  gap: .85rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-bame {
  height: 3.4rem;
}

.brand-logo-bide {
  height: 3.1rem;
}

.brand-divider {
  display: block;
  width: 1px;
  height: 2.6rem;
  background: var(--border-color);
}

.navbar .nav-link {
  color: var(--dark-text);
  font-weight: 600;
  padding-inline: .65rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--primary-deep);
}

.mobile-nav-list .nav-link {
  border-bottom: 1px solid var(--border-color);
  padding: .9rem 0;
}

.section-pad {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-anchor {
  scroll-margin-top: 8rem;
}

.bg-light-panel {
  background: var(--light-background);
}

.bg-accent-soft {
  background: var(--accent-light);
}

.eyebrow {
  margin-bottom: .75rem;
  color: var(--primary-deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .76rem;
  text-transform: uppercase;
}

.summit-text {
  color: var(--secondary-deep);
}

.awards-text {
  color: var(--primary-deep);
}

.section-heading {
  max-width: 760px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(120deg, rgba(177, 78, 145, .97), rgba(61, 134, 167, .94));
  color: var(--white-color);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 35, 44, .24);
  pointer-events: none;
}

.hero-section p,
.race-section p,
.final-cta p {
  color: rgba(255,255,255,.9);
}

.hero-theme {
  max-width: 760px;
  margin: 1.4rem 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  font-size: 1.05rem;
}

.secure-note {
  font-size: .92rem;
}

.hero-event-card {
  overflow: hidden;
  border-radius: 1rem;
  background: var(--white-color);
  box-shadow: 0 1.5rem 3.5rem rgba(23, 35, 44, .3);
}

.hero-event-card img,
.feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
}

.event-details {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .8rem;
  color: var(--dark-text);
}

.detail-row i {
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.countdown-panel {
  margin: 0 1.5rem 1.5rem;
  padding: 1rem;
  border-radius: .85rem;
  background: var(--secondary-soft);
  text-align: center;
}

.countdown-label,
.ticket-deadline {
  margin-bottom: .8rem;
  color: var(--primary-deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.countdown-grid div {
  border-radius: .7rem;
  background: var(--white-color);
  padding: .75rem .35rem;
}

.countdown-grid strong {
  display: block;
  color: var(--primary-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.countdown-grid span {
  color: var(--muted-text);
  font-size: .68rem;
  text-transform: uppercase;
}

.btn-brand-primary,
.btn-brand-secondary,
.btn-outline-brand,
.btn-hero-outline,
.btn-dark-outline {
  border-radius: .625rem;
  padding: .875rem 1.35rem;
  font-weight: 700;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-brand-primary {
  background-color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  color: var(--white-color);
}

.btn-brand-primary:hover,
.btn-brand-primary:focus {
  background-color: var(--primary-deep);
  border-color: var(--primary-deep);
  color: var(--white-color);
  box-shadow: 0 .5rem 1.25rem rgba(99, 39, 80, .22);
  transform: translateY(-2px);
}

.btn-brand-secondary {
  background-color: var(--secondary-dark);
  border: 2px solid var(--secondary-dark);
  color: var(--white-color);
}

.btn-brand-secondary:hover,
.btn-brand-secondary:focus {
  background-color: var(--secondary-deep);
  border-color: var(--secondary-deep);
  color: var(--white-color);
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--secondary-dark);
  color: var(--secondary-deep);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--secondary-dark);
  color: var(--white-color);
}

.btn-hero-outline,
.btn-dark-outline {
  border: 2px solid rgba(255,255,255,.82);
  color: var(--white-color);
}

.btn-hero-outline:hover,
.btn-dark-outline:hover,
.btn-hero-outline:focus,
.btn-dark-outline:focus {
  background: var(--white-color);
  color: var(--primary-deep);
}

.brand-card {
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: 0 .75rem 2rem var(--shadow-color);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(31, 41, 55, .16);
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border-top: 5px solid var(--secondary-color);
}

.awards-card {
  border-top-color: var(--primary-color);
}

.group-card {
  border-top-color: var(--secondary-deep);
}

.ticket-card.featured {
  border: 3px solid var(--primary-color);
  background: var(--primary-soft);
}

.ticket-top,
.recommended-badge {
  align-self: flex-start;
  margin-bottom: .75rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--secondary-light);
  color: var(--secondary-deep);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
}

.recommended-badge {
  background: var(--primary-dark);
  color: var(--white-color);
}

.price-list,
.included-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--muted-text);
  font-size: .9rem;
}

.price-list strong {
  color: var(--primary-deep);
  white-space: nowrap;
}

.included-list {
  display: grid;
  gap: .7rem;
}

.included-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted-text);
  line-height: 1.45;
}

.included-list li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: .05rem;
  font-family: bootstrap-icons;
  color: var(--secondary-dark);
}

.feature-image {
  border-radius: 1rem;
  box-shadow: 0 1rem 2.25rem rgba(31, 41, 55, .16);
}

.about-awards-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--white-color) 0%, var(--white-color) 48%, var(--primary-soft) 48%, var(--primary-soft) 100%);
}

.about-awards-layout {
  padding-block: .5rem;
}

.about-awards-media {
  position: relative;
  margin: 0;
  padding: .75rem;
  border-radius: 1.25rem;
  background: var(--white-color);
  border: 1px solid rgba(177, 78, 145, .18);
  box-shadow: 0 1.25rem 3rem rgba(31, 41, 55, .14);
}

.about-awards-media::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1rem -1rem 1.25rem;
  z-index: 0;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(177, 78, 145, .22), rgba(61, 134, 167, .18));
}

.about-awards-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: .9rem;
}

.about-awards-media figcaption {
  position: relative;
  z-index: 1;
  margin-top: .75rem;
  color: var(--muted-text);
  font-size: .86rem;
  font-weight: 600;
}

.about-awards-content {
  max-width: 620px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(177, 78, 145, .12);
}

.about-awards-content h2 {
  color: var(--primary-deep);
}

.section-lede {
  color: var(--dark-text);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.about-awards-features div {
  padding: 1rem;
  border-radius: .85rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
}

.feature-list i,
.benefit-card i,
.mini-card i {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: .75rem;
  background: var(--primary-light);
  color: var(--primary-deep);
  font-size: 1.25rem;
}

.feature-list strong {
  display: block;
  color: var(--dark-text);
}

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

.mini-card {
  height: 100%;
  padding: 1.2rem;
  background: var(--white-color);
  border-radius: .85rem;
  border: 1px solid var(--border-color);
}

.mini-card strong,
.mini-card span {
  display: block;
  margin-top: .65rem;
}

.mini-card span {
  color: var(--muted-text);
  font-size: .92rem;
}

.race-section,
.final-cta {
  background:
    linear-gradient(120deg, rgba(99, 39, 80, .98), rgba(33, 75, 96, .98)),
    var(--dark-background);
  color: var(--white-color);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.race-section h2,
.final-cta h2 {
  color: var(--white-color);
}

.theme-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.theme-questions,
.experience-grid,
.attendee-grid {
  display: grid;
  gap: .9rem;
}

.theme-questions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.theme-questions span {
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: .75rem;
  background: rgba(255,255,255,.08);
}

.theme-close {
  font-weight: 700;
}

.benefit-card,
.speaker-card {
  padding: 1.5rem;
}

.benefit-card h3,
.speaker-card h3 {
  margin: 1rem 0 .6rem;
}

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

.attendee-grid span,
.experience-grid span {
  padding: 1rem 1.1rem;
  border-radius: .85rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  font-weight: 700;
}

.text-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.agenda-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
}

.agenda-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent-color);
  transform: translateX(-50%);
}

.agenda-item {
  position: relative;
  padding: 1.3rem;
  border-left: 4px solid var(--secondary-color);
  border-radius: .85rem;
  background: var(--secondary-soft);
  box-shadow: 0 .75rem 1.8rem rgba(31, 41, 55, .08);
}

.agenda-item:nth-child(even) {
  grid-column: 2;
  transform: translateY(2.5rem);
}

.agenda-item::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  background: var(--secondary-dark);
  border: 3px solid var(--white-color);
}

.agenda-item:nth-child(odd)::after {
  right: -3.05rem;
}

.agenda-item:nth-child(even)::after {
  left: -3.05rem;
  background: var(--primary-dark);
}

.agenda-item.featured-session {
  border-left-color: var(--primary-color);
  background: var(--primary-soft);
}

.agenda-item time {
  color: var(--secondary-deep);
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.accordion-button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

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

.speaker-placeholder {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary-deep);
  font-size: 2rem;
}

.info-grid,
.experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-grid span {
  padding: 1rem;
  border-left: 4px solid var(--primary-color);
  border-radius: .75rem;
  background: var(--primary-soft);
}

.info-grid strong {
  display: block;
}

.brand-form {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 1rem 2.25rem rgba(31, 41, 55, .12);
}

.form-control,
.form-select {
  min-height: 3rem;
  border: 1px solid var(--border-color);
  color: var(--dark-text);
  background: var(--white-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-dark);
  box-shadow: 0 0 0 .25rem rgba(61, 134, 167, .18);
}

.form-label {
  color: var(--dark-text);
  font-weight: 700;
}

.form-feedback {
  display: none;
  padding: .85rem 1rem;
  border-radius: .65rem;
  background: var(--secondary-light);
  color: var(--secondary-deep);
  font-weight: 700;
}

.form-feedback.is-visible {
  display: block;
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta .container {
  max-width: 900px;
}

.final-countdown {
  max-width: 520px;
}

.final-countdown div {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
}

.final-countdown strong,
.final-countdown span {
  color: var(--white-color);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--dark-background);
  color: rgba(255,255,255,.78);
}

.site-footer h2 {
  color: var(--white-color);
  font-size: .85rem;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255,255,255,.72);
}

.site-footer a {
  display: block;
  margin: .45rem 0;
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white-color);
}

.footer-brand {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: inline-flex !important;
  padding: .65rem .85rem;
  border-radius: .75rem;
  background: var(--white-color);
}

.footer-logo-link img {
  display: block;
  width: auto;
  height: 3.2rem;
  object-fit: contain;
}

.social-links {
  display: flex;
  gap: .75rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .9rem;
}

.back-to-top,
.mobile-ticket-cta {
  position: fixed;
  z-index: 1030;
}

.back-to-top {
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: var(--secondary-deep);
  color: var(--white-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-ticket-cta {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  padding: .9rem 1rem;
  border-radius: .75rem;
  background: var(--primary-dark);
  color: var(--white-color);
  text-align: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  box-shadow: 0 .8rem 2rem rgba(31, 41, 55, .24);
}

@media (max-width: 1199.98px) {
  .navbar .btn-sm {
    padding: .75rem 1rem;
  }

  .brand-lockup {
    gap: .6rem;
  }

  .brand-logo-bame {
    height: 3rem;
  }

  .brand-logo-bide {
    height: 2.65rem;
  }

  .brand-divider {
    height: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    max-width: 16ch;
  }

  .about-awards-section {
    background: var(--primary-soft);
  }

  .about-awards-content {
    max-width: none;
    padding: 1.5rem 0 0;
    background: transparent;
    border: 0;
  }

  .about-awards-media::before {
    inset: 1rem -.5rem -.5rem .75rem;
  }

  .theme-questions,
  .attendee-grid,
  .info-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: 5.3rem;
  }

  .mobile-ticket-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-inline: 1.5rem;
  }

  .announcement-bar {
    font-size: .68rem;
  }

  .announcement-bar .container {
    max-width: 22rem;
  }

  .navbar {
    min-height: 4.25rem;
  }

  .brand-lockup {
    gap: .45rem;
  }

  .brand-logo-bame {
    height: 2.35rem;
  }

  .brand-logo-bide {
    height: 2rem;
  }

  .brand-divider {
    height: 1.8rem;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-section .container {
    padding-inline: 2.25rem;
  }

  .hero-section .col-lg-7,
  .hero-section .col-lg-5 {
    max-width: 18rem;
    margin-inline: auto;
  }

  h1 {
    max-width: 12ch;
    font-size: 1.5rem;
    line-height: 1.16;
  }

  .hero-theme {
    max-width: 24ch;
    font-size: 1.02rem;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: .96rem;
  }

  .hero-section p,
  .detail-row span,
  .announcement-bar span {
    overflow-wrap: anywhere;
  }

  .hero-section .btn {
    width: 100%;
  }

  .countdown-grid {
    gap: .45rem;
  }

  .countdown-grid strong {
    font-size: 1.05rem;
  }

  .ticket-card,
  .benefit-card,
  .speaker-card {
    padding: 1.15rem;
  }

  .about-awards-media {
    padding: .55rem;
    border-radius: 1rem;
  }

  .about-awards-media img {
    aspect-ratio: 1.05 / 1;
  }

  .about-awards-media figcaption {
    font-size: .78rem;
  }

  .about-awards-features div {
    padding: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
