.cc-preferences-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cc-preferences-btn:hover, .cc-preferences-btn:focus-visible {
  opacity: 1;
  transform: scale(1.1);
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}
.cc-preferences-btn .material-symbols-outlined {
  font-size: 1.25rem;
  line-height: 1;
}

body.home-page span.site-kicker {
  display: none;
}

a.site-brand {
  background-color: white;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.1rem;
  background: radial-gradient(1000px 300px at 12% -10%, rgba(218, 79, 47, 0.18), transparent 65%), radial-gradient(850px 250px at 88% 110%, rgba(19, 35, 60, 0.18), transparent 62%), linear-gradient(145deg, #fff6ef 0%, #ffffff 45%, #eef4ff 100%);
  border: 1px solid rgba(19, 35, 60, 0.08);
}
.landing-hero.landing-hero-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: auto;
  min-height: 100vh;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  display: flex;
  align-items: center;
}
@supports (height: 100dvh) {
  .landing-hero.landing-hero-full {
    min-height: 100dvh;
  }
}
.landing-hero .landing-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landing-hero .landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10, 20, 34, 0.78) 0%, rgba(11, 18, 30, 0.45) 55%, rgba(18, 24, 38, 0.65) 100%);
  z-index: 1;
}
.landing-hero .landing-hero-content {
  --hero-content-offset-y: max(var(--site-header-min-height), 6rem);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  padding-top: var(--hero-content-offset-y) !important;
}
.landing-hero .landing-hero-content > .row {
  width: 100%;
}
.landing-hero .landing-hero-content .hero-title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.25;
  letter-spacing: 0;
  color: white;
  font-weight: bold;
}
.landing-hero .landing-hero-content .hero-title > span {
  display: block;
}
.landing-hero .landing-hero-content .hero-title span {
  color: #EB4A00;
  text-transform: uppercase;
  font-size: 2rem;
}
.landing-hero .landing-hero-content .hero-title span.fw-100 {
  font-weight: 100 !important;
}
.landing-hero .landing-hero-content .hero-lead {
  max-width: 62ch;
  color: rgba(247, 250, 255, 0.9);
  font-size: 1.25rem;
}
.landing-hero .landing-hero-content .hero-actions {
  margin-top: 1.25rem;
}
.landing-hero .landing-hero-content .hero-actions .hero-scroll-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.2s ease;
}
.landing-hero .landing-hero-content .hero-actions .hero-scroll-cta:hover, .landing-hero .landing-hero-content .hero-actions .hero-scroll-cta:focus-visible {
  color: #fff;
  opacity: 0.82;
}
.landing-hero .landing-hero-content .hero-actions .hero-scroll-cta .hero-scroll-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: hero-arrow-pulse 1.15s ease-in-out infinite;
}
.landing-hero .landing-hero-content .hero-actions .hero-scroll-cta .hero-scroll-text {
  line-height: 1.1;
}

@keyframes hero-arrow-pulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
.stat-tile {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.9rem;
  background: rgba(12, 24, 40, 0.6);
  color: #fff;
  backdrop-filter: blur(3px);
  padding: 0.85rem 1rem;
  min-height: 100%;
}

.early-access-cta {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(280px, 30vw, 420px);
  border-radius: 0;
  background: rgba(235, 74, 0, 0.75);
  color: #fff;
  backdrop-filter: blur(2px);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
  gap: 50px;
}
.early-access-cta p {
  color: rgba(245, 249, 255, 0.95);
}
.early-access-cta .early-access-label {
  width: 100%;
  font-family: "Anton", sans-serif;
  transform: rotate(-10deg);
  font-size: clamp(2.2rem, 14vw, 6rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
.early-access-cta .early-access-content {
  position: relative;
  z-index: 2;
  max-width: 280px;
  color: #051229;
  font-size: 1.25rem;
}
.early-access-cta .early-access-content a {
  padding: 10px;
  font-weight: bold;
  color: rgb(235, 74, 0);
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .landing-hero-full {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    min-height: 100vh;
  }
  .landing-hero-content {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100% !important;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    padding-bottom: 1.5rem;
  }
  .hero-actions {
    margin-bottom: 0.8rem;
  }
  .early-access-cta {
    position: static;
    flex: 0 0 auto;
    width: 100%;
    min-height: 180px;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
  }
  .early-access-cta .early-access-label {
    transform: rotate(0deg);
    font-size: clamp(1.8rem, 8vw, 3.2rem);
    letter-spacing: 0.06em;
    width: fit-content;
  }
  .early-access-cta .early-access-content {
    max-width: min(680px, 68%);
    font-size: 1.1rem;
  }
  .speaker-section .speaker-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .landing-hero-full {
    min-height: 100vh;
  }
  @supports (height: 100dvh) {
    .landing-hero-full {
      min-height: 100dvh;
    }
  }
  .landing-hero-content {
    --hero-content-offset-y: max(var(--site-header-min-height), 3.5rem);
    flex: 1 0 auto;
    align-items: flex-start;
  }
  .early-access-cta {
    flex-direction: column;
  }
  .early-access-cta .early-access-content {
    max-width: 100%;
    text-align: center;
  }
}
.benefits {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .benefits {
    flex-direction: column;
  }
}
.benefits .benefits-chips {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: space-evenly;
}
@media (max-width: 991.98px) {
  .benefits .benefits-chips {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .benefits .benefits-chips {
    flex-direction: column;
  }
}
.benefits p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 0;
  align-items: start;
}
.benefits p::before {
  content: "check";
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-accent);
}
.benefits .benefits-cta {
  margin-top: -15px;
}
@media (min-width: 992px) {
  .benefits .benefits-cta {
    margin-left: auto;
    margin-right: 15px;
  }
}

.benefits-cta {
  display: inline-block;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand-accent);
  border: 1px solid white;
  padding: 5px 20px;
  background-color: transparent;
  width: fit-content;
  transform: rotate(-5deg);
  text-decoration: none;
  line-height: 1.2;
}

.float-right {
  float: right;
}

@media (min-width: 992px) {
  .benefits-cta:hover,
  .benefits-cta:focus-visible {
    border-color: var(--brand-accent);
    background-color: var(--brand-accent);
    color: #fff;
  }
}
.landing-hero .text-secondary {
  color: rgba(237, 243, 255, 0.82) !important;
}

#programm-intro {
  position: relative;
}

.programm-intro-media {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  overflow: visible;
}
.programm-intro-media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 70%;
  height: auto;
}
.programm-intro-media .programm-intro-geometry {
  --shape-size: clamp(280px, 42vw, 620px);
  --shape-top: 50%;
  --shape-left: 50%;
  --shape-color-a: rgba(235, 74, 0, 0.28);
  --shape-color-b: rgba(19, 35, 60, 0.2);
  position: absolute;
  top: var(--shape-top);
  left: var(--shape-left);
  width: var(--shape-size);
  height: var(--shape-size);
  background: linear-gradient(135deg, var(--shape-color-a) 0%, var(--shape-color-b) 100%);
  filter: blur(1px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  clip-path: polygon(50% 0%, 100% 35%, 78% 100%, 18% 88%, 0% 34%);
  -webkit-clip-path: polygon(50% 0%, 100% 35%, 78% 100%, 18% 88%, 0% 34%);
}

@media (max-width: 767.98px) {
  .programm-intro-geometry {
    --shape-size: clamp(220px, 78vw, 440px);
    --shape-top: 50%;
    --shape-left: 50%;
    opacity: 0.72;
  }
}
.feature-card,
.session-card,
.faq-card {
  border: 1px solid rgba(19, 35, 60, 0.08);
  border-radius: 0.95rem;
  background: #fff;
}

.feature-card {
  padding: 1.05rem;
}

.program-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.program-card-check {
  color: #eb4a00;
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 0.06rem;
}

.session-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1rem;
}
.session-card .session-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.session-card .session-meta-row > .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-accent);
}
.session-card .session-meta-row .session-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.session-card .session-meta-row .session-category-list .session-category-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(19, 35, 60, 0.15);
  background: #f7f9fc;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.74rem;
  line-height: 1.1;
  color: #13233c;
}
.session-card .session-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.session-card .session-meta .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-accent);
}
.session-card > a {
  margin-top: auto;
  width: fit-content;
}

#themen.themen-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
  overflow-x: clip;
}
#themen.themen-section .themen-tiles-row {
  transform: rotate(-3deg);
}
#themen.themen-section .themen-tiles-row .themen-card {
  padding: 100px;
  background-color: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, box-shadow;
  position: relative;
  z-index: 1;
  transform-origin: center;
}
#themen.themen-section .themen-tiles-row .themen-card h3 {
  font-size: 3.5rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}
#themen.themen-section .themen-tiles-row .themen-card:hover,
#themen.themen-section .themen-tiles-row .themen-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 22px 44px rgba(19, 35, 60, 0.24);
  z-index: 6;
}
@media (min-width: 768px) {
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card,
  #themen.themen-section .themen-tiles-row > div:nth-child(4) .themen-card {
    background-color: var(--brand-accent);
  }
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card h3,
  #themen.themen-section .themen-tiles-row > div:nth-child(4) .themen-card h3 {
    color: white;
  }
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card .text-secondary,
  #themen.themen-section .themen-tiles-row > div:nth-child(4) .themen-card .text-secondary {
    color: var(--brand-dark) !important;
  }
}
@media (max-width: 767.98px) {
  #themen.themen-section .themen-tiles-row {
    transform: none;
    overflow-x: hidden;
    overflow-x: clip;
    gap: 0.75rem 0;
  }
  #themen.themen-section .themen-tiles-row > div {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  #themen.themen-section .themen-tiles-row .themen-card {
    --themen-card-rotation: -1.2deg;
    width: 100%;
    max-width: min(100%, 44rem);
    margin: 0 auto;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    transform: rotate(var(--themen-card-rotation));
  }
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card,
  #themen.themen-section .themen-tiles-row > div:nth-child(3) .themen-card {
    background-color: var(--brand-accent);
  }
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card h3,
  #themen.themen-section .themen-tiles-row > div:nth-child(3) .themen-card h3 {
    color: white;
  }
  #themen.themen-section .themen-tiles-row > div:nth-child(1) .themen-card .text-secondary,
  #themen.themen-section .themen-tiles-row > div:nth-child(3) .themen-card .text-secondary {
    color: var(--brand-dark) !important;
  }
  #themen.themen-section .themen-tiles-row .themen-card:hover,
  #themen.themen-section .themen-tiles-row .themen-card:focus-within {
    transform: translateY(-4px) rotate(var(--themen-card-rotation));
  }
}

#programmvorschau {
  position: relative;
}
#programmvorschau #programm-info {
  display: flex;
  flex-direction: row;
  gap: 25px;
  flex-wrap: wrap;
}
#programmvorschau #programm-info .programm-step {
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#programmvorschau #programm-info .programm-step .programmvorschau-filter-icon {
  font-size: 40px;
  margin-right: 10px;
}
#programmvorschau #programm-info .programm-step:not(:last-child):after {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  font-size: 40px;
  color: var(--brand-accent);
  display: block;
  margin-left: 25px;
}
#programmvorschau .programmvorschau-phase-spacer {
  width: 100%;
}
#programmvorschau .programmvorschau-phase-spacer.programmvorschau-phase-spacer--coffee {
  position: relative;
  height: 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#programmvorschau .programmvorschau-phase-spacer.programmvorschau-phase-spacer--coffee .programmvorschau-phase-spacer-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 1;
  margin: 0;
  border-radius: 50%;
  padding: 20px;
  background-color: white;
}
#programmvorschau .programmvorschau-phase-spacer.programmvorschau-phase-spacer--meal {
  width: fit-content;
  margin: 25px auto;
}
#programmvorschau .programmvorschau-phase-spacer.programmvorschau-phase-spacer--meal .programm-step {
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#programmvorschau .programmvorschau-phase-spacer.programmvorschau-phase-spacer--meal .programm-step .programmvorschau-filter-icon {
  font-size: 40px;
  margin-right: 10px;
}
#programmvorschau .programmvorschau-toolbar {
  margin-bottom: 1rem;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters {
  display: grid;
  gap: 0.6rem;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box {
  border: 1px solid rgba(19, 35, 60, 0.1);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.8rem;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-filter-group > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-filter-icon {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--brand-accent);
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-chip {
  border: 1px solid rgba(19, 35, 60, 0.18);
  background: #f7f9fc;
  color: #13233c;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  line-height: 1.1;
  transition: all 0.2s ease;
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-chip:hover, #programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-chip:focus-visible {
  background: #eef3ff;
  border-color: rgba(19, 35, 60, 0.35);
}
#programmvorschau .programmvorschau-toolbar .programmvorschau-filters .programmvorschau-filter-box .programmvorschau-chip.is-active {
  background: #13233c;
  color: #fff;
  border-color: #13233c;
}
#programmvorschau .programmvorschau-slides {
  position: relative;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track {
  position: relative;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1.6rem 0;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header .programmvorschau-slot-heading {
  margin-bottom: 0;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header .programmvorschau-slot-toggle {
  border: 1px solid rgba(19, 35, 60, 0.22);
  background: rgba(255, 255, 255, 0.75);
  color: #13233c;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header .programmvorschau-slot-toggle .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header .programmvorschau-slot-toggle:hover, #programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot .programmvorschau-slot-inner .programmvorschau-slot-header .programmvorschau-slot-toggle:focus-visible {
  background: #fff;
  border-color: rgba(19, 35, 60, 0.45);
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot.phase-1 {
  background: #F6D55C;
  padding-bottom: 50px;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot.phase-2 {
  background: #5DA9E9;
  padding-top: 50px;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot.phase-3 {
  background: #F7A072;
  padding-bottom: 50px;
}
#programmvorschau .programmvorschau-slides .programmvorschau-track .programmvorschau-slot.phase-4 {
  background: #7FB069;
  padding-top: 50px;
}

#location-cta .cta-band {
  border: 1px solid rgba(19, 35, 60, 0.1);
  border-radius: 1rem;
  background: linear-gradient(125deg, #13233c 0%, #233c63 100%);
  color: #fff;
}
#location-cta .locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 5%;
}
#location-cta .locations p {
  flex-basis: 45%;
  margin: 0;
}
#location-cta .locations .map-location-toggle {
  display: block;
  margin: 0 0 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}
#location-cta .locations .map-location-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}
@media (max-width: 767.98px) {
  #location-cta .locations {
    flex-direction: column;
    line-height: 1.2;
  }
}

#recap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.recap-scroll {
  position: relative;
}

.recap-stage {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--brand-accent);
}

@supports (height: 100dvh) {
  .recap-stage {
    height: 100dvh;
    min-height: 100dvh;
  }
}
.recap-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1.8s ease-in-out;
}

.recap-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.recap-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
}
.speaker-card .speaker-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.speaker-card .speaker-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 0.95rem 0.9rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 16, 30, 0) 6%, rgba(5, 16, 30, 0.84) 66%, rgba(5, 16, 30, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 50%;
}
.speaker-card .speaker-card-overlay h3 {
  color: var(--brand-accent);
  text-transform: uppercase;
}
.speaker-card .speaker-card-overlay .text-secondary {
  color: rgba(232, 239, 250, 0.92) !important;
  font-size: 1rem;
}
.speaker-card .speaker-card-overlay .speaker-bio {
  will-change: transform, opacity;
}
.speaker-card:hover .speaker-card-image {
  transform: scale(1.04);
}

@media (hover: hover) and (pointer: fine) {
  .speaker-card .speaker-card-overlay .speaker-bio {
    position: absolute;
    right: 0.95rem;
    bottom: 0.9rem;
    left: 0.95rem;
    margin: 0;
    opacity: 0;
    transform: translateY(28px);
    pointer-events: none;
  }
}
.section-heading {
  font-size: clamp(1.65rem, 1.2rem + 2.2vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}
.section-heading span.material-symbols-outlined {
  font-size: clamp(1.8rem, 1.45rem + 1.2vw, 2.5rem);
}

.price-card {
  --price-card-border: rgba(19, 35, 60, 0.1);
  --price-card-shadow: 0 14px 28px rgba(19, 35, 60, 0.08);
  --price-card-text: #5d6979;
  --price-card-value: #13233c;
  --price-card-kicker: #2a394e;
  --wave-pattern-bg: #f6f8fb;
  border: 1px solid rgba(19, 35, 60, 0.1);
  border-radius: 0.95rem;
  background: #fff;
  padding: 1rem;
  height: 100%;
  box-shadow: var(--price-card-shadow);
  border-color: var(--price-card-border);
}
.price-card .small.text-secondary {
  color: var(--price-card-kicker) !important;
}
.price-card p.text-secondary {
  color: var(--price-card-text) !important;
}

.price-card--regular {
  --wave-pattern-bg: linear-gradient(140deg, #fff4dc 0%, #ffe3b2 55%, #ffd589 100%);
  --price-card-border: rgba(143, 92, 18, 0.4);
  --price-card-shadow: 0 16px 30px rgba(143, 92, 18, 0.2);
  --price-card-value: #8a5400;
  --price-card-kicker: #6e4300;
  --price-card-text: #7a5f34;
}

.price-card--professional {
  --wave-pattern-bg: linear-gradient(140deg, #ebf6ff 0%, #d7ecff 52%, #c5e2ff 100%);
  --price-card-border: rgba(22, 95, 156, 0.34);
  --price-card-shadow: 0 16px 30px rgba(22, 95, 156, 0.16);
  --price-card-value: #0c5793;
  --price-card-kicker: #094572;
  --price-card-text: #3e647f;
}

.price-card--student {
  --wave-pattern-bg: linear-gradient(140deg, #ecfff4 0%, #d5f7e4 55%, #c3f0d7 100%);
  --price-card-border: rgba(26, 130, 88, 0.34);
  --price-card-shadow: 0 16px 30px rgba(26, 130, 88, 0.14);
  --price-card-value: #116a45;
  --price-card-kicker: #0f5a3b;
  --price-card-text: #356955;
}

.price-value {
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--price-card-value);
}

@media (max-width: 767.98px) {
  #preise .price-cards-row {
    --bs-gutter-y: 1rem;
  }
  #preise .benefits-cta.float-right {
    float: none;
    display: inline-block;
    margin-top: 1rem;
    transform: none;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    max-width: 100%;
  }
}
body.register .hero-title {
  color: var(--brand-dark);
}

.agenda-option {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  background: #fff;
  height: 100%;
}

.register-filters {
  display: grid;
  gap: 0.6rem;
}

.register-filter-box {
  border: 1px solid rgba(19, 35, 60, 0.1);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.8rem;
}

.register-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.register-filter-icon {
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-accent);
}

.register-filter-chip {
  border: 1px solid rgba(19, 35, 60, 0.18);
  background: #f7f9fc;
  color: #13233c;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.82rem;
  line-height: 1.1;
  transition: all 0.2s ease;
}

.register-filter-chip:hover,
.register-filter-chip:focus-visible {
  background: #eef3ff;
  border-color: rgba(19, 35, 60, 0.35);
}

.register-filter-chip.is-active {
  background: #13233c;
  color: #fff;
  border-color: #13233c;
}

.agenda-slot {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 1rem 0;
  background: #fff;
}

.agenda-slot-inner {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.agenda-slot.phase-1 {
  background: #F6D55C;
}

.agenda-slot.phase-2 {
  background: #5DA9E9;
}

.agenda-slot.phase-3 {
  background: #F7A072;
}

.agenda-slot.phase-4 {
  background: #7FB069;
}

.agenda-slot.phase-5 {
  background: #B39CD0;
}

.agenda-option:hover {
  box-shadow: 0 10px 24px rgba(19, 35, 60, 0.08);
}

.agenda-option.border-dark {
  border-color: var(--brand-dark) !important;
  box-shadow: 0 0 0 2px rgba(19, 35, 60, 0.08);
}

.agenda-option .agenda-radio {
  cursor: pointer;
  margin-bottom: 0.45rem;
}

.agenda-option .agenda-radio[disabled] {
  cursor: not-allowed;
}

.agenda-option:has(.agenda-radio[disabled]) {
  opacity: 0.72;
}

.session-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.session-meta-row > .material-symbols-outlined,
.session-meta .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-accent);
}

.session-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.session-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.session-category-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(19, 35, 60, 0.15);
  background: #f7f9fc;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.74rem;
  line-height: 1.1;
  color: #13233c;
}

.success-icon {
  font-size: 3rem;
  color: #18a058;
}

button.js-card-select-btn {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}
button.js-card-select-btn:hover {
  background-color: var(--brand-accent);
  color: white;
  border-color: var(--brand-accent);
}

.agenda-timeslot {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.85rem;
  background: #fff;
  padding: 1rem;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}

.agenda-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.8rem;
  background: #fdfcf9;
  padding: 0.9rem;
}

.agenda-meta {
  font-size: 0.85rem;
  color: #5a6472;
}

.agenda-overview-card {
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 1rem;
  min-height: 100%;
}

.agenda-overview-card-danger {
  border-color: rgba(220, 53, 69, 0.35);
  background: #fff6f7;
}

.agenda-overview-card-warning {
  border-color: rgba(255, 193, 7, 0.5);
  background: #fffaf0;
}

.agenda-overview-card-muted {
  border-color: rgba(108, 117, 125, 0.35);
  background: #f8f9fa;
}

.agenda-overview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

body.admin-view,
body.register-view {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
body.admin-view main,
body.register-view main {
  margin-bottom: 100px;
}
body.admin-view footer,
body.register-view footer {
  margin-top: auto;
}

.program-point-page .program-point-shell {
  margin-inline: auto;
}
.program-point-page .program-point-backlink {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 400;
}
.program-point-page .program-point-backlink:before {
  content: "";
}
.program-point-page .program-point-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 35, 60, 0.08);
}
.program-point-page .program-point-header,
.program-point-page .program-point-body,
.program-point-page .program-point-footer {
  position: relative;
  z-index: 1;
}
.program-point-page .program-point-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.program-point-page .program-point-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
}
.program-point-page .program-point-chip-list {
  gap: 0.45rem;
}
.program-point-page .program-point-chip-list .session-category-chip {
  background: rgba(19, 35, 60, 0.08);
}
.program-point-page .program-point-section-title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.program-point-page .program-point-description {
  font-size: 1.15rem;
}
.program-point-page .program-point-meta-grid {
  border-left: 3px solid rgba(235, 74, 0, 0.5);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.program-point-page .program-point-meta-label {
  display: block;
  color: #5d6780;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.22rem;
}
.program-point-page .program-point-meta-value {
  margin: 0;
  font-weight: 600;
  font-size: 0.98rem;
}
.program-point-page .program-point-meta-speaker-image {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}
.program-point-page .program-point-block {
  background: rgba(255, 255, 255, 0.84);
}
.program-point-page .program-point-list {
  margin-bottom: 0;
}
.program-point-page .program-point-list-item {
  border-bottom: 1px dashed rgba(19, 35, 60, 0.16);
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
}
.program-point-page .program-point-list-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.program-point-page section.program-point-related .session-card .related-speaker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.program-point-page section.program-point-related .session-card .related-speaker-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(19, 35, 60, 0.14);
  vertical-align: middle;
}
.program-point-page .program-point-footer {
  margin-top: 2rem;
}
.program-point-page .program-point-footer .js-program-point-select-cta.is-selected {
  background: #be4126;
  box-shadow: 0 0 0 3px rgba(235, 74, 0, 0.2);
}
.program-point-page .program-point-footer .js-program-point-select-cta.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: auto;
}
.program-point-page .program-point-footer .program-point-cta-message {
  font-size: 0.88rem;
  color: #c0392b;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .program-point-page .program-point-card::after {
    inset: -36% auto auto -28%;
    width: min(420px, 92vw);
    height: min(420px, 92vw);
  }
  .program-point-page .program-point-meta-grid {
    border-left: 0;
    border-top: 3px solid rgba(235, 74, 0, 0.5);
  }
  .program-point-page .program-point-block {
    padding: 0.95rem;
  }
  .program-point-page .program-point-map {
    height: 220px;
    min-height: 220px;
  }
}

:root {
  --brand-bg: #f6efe6;
  --brand-dark: #13233c;
  --brand-accent: #EB4A00;
  --site-header-min-height: 74px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--brand-dark);
  min-height: 100vh;
  font-size: 20px;
  overflow-x: hidden;
}

h2 {
  font-size: 2.5rem;
}

.brand-accent {
  color: var(--brand-accent);
}

.text-085 {
  font-size: 0.85rem;
}

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

.custom-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--brand-accent);
  text-decoration: none;
  padding: 0.25rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
}
.custom-btn .custom-btn-icon {
  font-size: 1.25rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.custom-btn:hover {
  border-color: var(--brand-accent);
}
.custom-btn:hover .custom-btn-icon {
  transform: translateX(4px);
}
.custom-btn:focus-visible .custom-btn-icon {
  transform: translateX(4px);
}

.rotated {
  font-weight: 100;
  text-transform: uppercase;
  display: block;
  color: var(--brand-accent);
  font-size: 1.5rem;
}

.site-header {
  position: relative;
  z-index: 10;
}
.site-header.site-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
}
.site-brand {
  color: var(--brand-dark);
}

.site-kicker {
  color: var(--brand-dark);
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 575.98px) {
  .site-kicker {
    text-align: center;
  }
}
.site-kicker .site-kicker-title {
  line-height: 1.05;
}
.site-kicker .site-kicker-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  text-transform: none;
}
.site-kicker .site-kicker-meta .site-kicker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-weight: 600;
  white-space: nowrap;
}
.site-kicker .site-kicker-meta .site-kicker-item .site-kicker-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.home-page .site-brand,
.home-page .site-kicker {
  color: #f6f9ff;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.home-page .site-kicker-meta {
  text-transform: none;
  opacity: 0.94;
}

.home-main {
  padding-top: 0 !important;
}

.hero-card {
  border: 0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.btn-brand {
  background: var(--brand-accent);
  color: #fff;
  border: 0;
}

.btn-brand:hover {
  background: #be4126;
  color: #fff;
}

.mt-10 {
  margin-top: 6rem !important;
}

.mb-10 {
  margin-bottom: 6rem !important;
}

.pt-10 {
  padding-top: 6rem !important;
}

.pb-10 {
  padding-bottom: 6rem !important;
}

@media (min-width: 992px) {
  .mt-100 {
    margin-top: 100px !important;
  }
}

.site-footer {
  background: linear-gradient(140deg, var(--brand-dark) 0%, #1d3558 62%, #27456f 100%);
  color: #fff;
}
.site-footer a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  opacity: 0.82;
}

.program-selection-trigger {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(19, 35, 60, 0.28);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.program-selection-trigger .material-symbols-outlined {
  font-size: 1.55rem;
  line-height: 1;
}
.program-selection-trigger:hover {
  background: #be4126;
  transform: scale(1.07);
}
.program-selection-trigger:focus-visible {
  outline: 3px solid rgba(235, 74, 0, 0.5);
  outline-offset: 2px;
}
@media (max-width: 767.98px) {
  .program-selection-trigger {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

.program-selection-trigger--bounce {
  animation: program-selection-trigger-bounce 0.45s ease;
}

@keyframes program-selection-trigger-bounce {
  0% {
    transform: scale(1);
  }
  36% {
    transform: scale(1.22);
  }
  72% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}
.program-selection-popin {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  width: min(420px, 100vw - 2rem);
  z-index: 61;
  background: #ffffff;
  border: 1px solid rgba(19, 35, 60, 0.14);
  border-radius: 0.9rem;
  box-shadow: 0 12px 36px rgba(19, 35, 60, 0.2);
  padding: 0.8rem 0.9rem;
}
@media (max-width: 767.98px) {
  .program-selection-popin {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    bottom: 5rem;
  }
}

.program-selection-popin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.program-selection-popin-title {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.25;
  font-weight: 700;
}

.program-selection-popin-close {
  border: 0;
  background: transparent;
  color: #5d6780;
  line-height: 1;
  font-size: 1.2rem;
  padding: 0;
}

.program-selection-popin-list {
  margin: 0 0 0.7rem;
  padding: 0;
  list-style: none;
  max-height: min(36vh, 260px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.program-selection-popin-slot-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem 0.55rem;
  align-items: start;
  border: 1px solid rgba(19, 35, 60, 0.12);
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.45rem 0.55rem;
}

.program-selection-popin-slot-head {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.program-selection-popin-slot-marker {
  --slot-phase-color: #e1e5ef;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--slot-phase-color);
  border: 1px solid rgba(19, 35, 60, 0.14);
  flex-shrink: 0;
}

.program-selection-popin-slot {
  color: #233c63;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.program-selection-popin-slot-body {
  grid-column: 1;
  color: #13233c;
  line-height: 1.25;
  font-size: 0.8rem;
  min-width: 0;
}

.program-selection-popin-program {
  font-weight: 500;
}

.program-selection-popin-program--placeholder {
  color: #7a8398;
  font-style: italic;
}

.program-selection-popin-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.program-selection-popin-remove {
  border: 0;
  background: transparent;
  color: #9aa0b0;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  margin-left: auto;
  margin-top: 0.02rem;
  font-size: 1.08rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 999px;
}
.program-selection-popin-remove:hover {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
}
.program-selection-popin-remove:disabled {
  cursor: not-allowed;
  opacity: 0.32;
  background: transparent;
  color: #9aa0b0;
}

@media (prefers-reduced-motion: reduce) {
  .program-selection-trigger--bounce {
    animation: none;
  }
}
.wave {
  display: none;
  mask: radial-gradient(67.08px at 50% calc(100% - 90px), #000 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 60px) 0/120px 100%, radial-gradient(67.08px at 50% calc(100% + 60px), rgba(0, 0, 0, 0) 99%, #000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
}

.phase-2 .wave.bottom {
  display: block;
  height: 50px;
  background-color: white;
  margin-bottom: -30px;
  transform: rotate(180deg);
}

.phase-3 .wave.top {
  display: block;
  height: 50px;
  background-color: white;
  margin-top: -30px;
}

.wave-pattern {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.wave-pattern > * {
  position: relative;
  z-index: 1;
}
.wave-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--wave-pattern-bg, #223c61);
  -webkit-mask: radial-gradient(45.22px at calc(100% + 40px) 50%, rgba(0, 0, 0, 0) calc(99% - 1px), #000 calc(101% - 1px) 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 10.5px + 0.5px) calc(50% - 40px)/21px 80px, radial-gradient(45.22px at -40px 50%, rgba(0, 0, 0, 0) calc(99% - 1px), #000 calc(101% - 1px) 99%, rgba(0, 0, 0, 0) 101%) calc(50% + 10.5px) 50%/21px 80px;
  mask: radial-gradient(45.22px at calc(100% + 40px) 50%, rgba(0, 0, 0, 0) calc(99% - 1px), #000 calc(101% - 1px) 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 10.5px + 0.5px) calc(50% - 40px)/21px 80px, radial-gradient(45.22px at -40px 50%, rgba(0, 0, 0, 0) calc(99% - 1px), #000 calc(101% - 1px) 99%, rgba(0, 0, 0, 0) 101%) calc(50% + 10.5px) 50%/21px 80px;
}

/*# sourceMappingURL=app.css.map */
