*,
*::before,
*::after {
  padding: 0;
  box-sizing: border-box;
  font-family: "72 Brand Variable", Arial, sans-serif;
}

ds-contextual-navigation {
  --cxs-popover-z-index: 153;
}

.sap-connect-wrapper {
  background: #12171C;
  margin: 0;
}

.hero-scroll-container {
  position: relative;
  z-index: 10;
  overflow-x: clip;
  overflow-y: visible;
}

.hero {
  --hero-top-padding: 96px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: var(--hero-top-padding) 24px 48px;
  justify-content: flex-start;
  overflow: visible;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px);
  animation: hero-text-enter 1s ease-out 200ms both;
  will-change: opacity, transform;
  margin-top: 40px;
  margin-bottom: auto;
}

@keyframes hero-text-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-date {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  background: linear-gradient(90deg, #8248C1 0%, #89D1FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 500;
}

.hero-title {
  margin-top: 16px;
  color: #FFF;
  text-align: center;
  font-size: 84px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.hero-description {
  margin-top: 20px;
  color: #D5DADD;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  max-width: 720px;
}

body:has([href='#main']:focus-visible) .nav-topbar {
  --acc-height: 21px;
}

/* Shared register button style */
a.btn-register {
  display: inline-flex;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #FFF;
  background: #FFF;
  color: #0040B0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

a.btn-register:hover {
  background: #a9b4be;
  border: 1px solid #475E75;
}

.hero-cta {
  margin-top: 40px;
  margin-bottom: 64px;
}

/* ==================== CARDS SECTION ==================== */

.cards-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 0 24px 48px;
  width: 100%;
  z-index: 2;
  overflow: visible;
  will-change: transform;
}

.card {
  position: relative;
  width: 214px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(var(--start-x, 0)) scale(0.3);
  transform-origin: bottom center;
  animation: card-spread 1.2s cubic-bezier(0.34, 1.12, 0.64, 1) both;
  --start-x: 0px;
}

/* Stagger - all non-large cards start stacked behind center */
.card:nth-child(1) {
  animation-delay: 500ms;
  --start-x: calc(472px / 2 + 214px + 16px);
}

.card:nth-child(2) {
  animation-delay: 350ms;
  --start-x: calc(472px / 2 + 8px);
}

.card:nth-child(3) {
  animation-delay: 0ms;
  z-index: 3;
  --start-x: 0px;
}

.card:nth-child(4) {
  animation-delay: 350ms;
  --start-x: calc(-472px / 2 - 8px);
}

.card:nth-child(5) {
  animation-delay: 500ms;
  --start-x: calc(-472px / 2 - 214px - 16px);
}

/* Small cards: spread on load (time) + center & spread-out on scroll */
.card:not(.card--large) {
  z-index: 1;
  animation: card-spread 1.2s cubic-bezier(0.34, 1.12, 0.64, 1) both;
  transition: top 0.3s ease;
  top: 0;
  will-change: transform, opacity;
  margin-bottom: 80px;
}

.card:not(.card--large):hover {
  top: -10px;
}

/* Spread direction per card */
.card:not(.card--large):nth-child(1) {
  --spread-x: -35;
}

.card:not(.card--large):nth-child(2) {
  --spread-x: -23;
}

.card:not(.card--large):nth-child(4) {
  --spread-x: 20;
}

.card:not(.card--large):nth-child(5) {
  --spread-x: 30;
}

@keyframes card-spread {
  from {
    opacity: 0;
    transform: translateX(var(--start-x, 0)) scale(0.3);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Scroll-driven: hero text fades out and moves down */
@keyframes fade-up-text {
  to {
    opacity: 0;
    translate: 0 60px;
  }
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: #12171C;
  opacity: 0.5;
  border-radius: 12px;
  transition: opacity 0.4s ease;
}

.card:hover .card-overlay {
  opacity: 0.15;
}

.card-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #D5DADD;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  z-index: 2;
}

.card--large {
  width: 472px;
  height: 560px;
  z-index: 20;
  animation: card-spread 1.2s cubic-bezier(0.34, 1.12, 0.64, 1) both;
}

.card--large .card-overlay {
  display: none;
}

/* ==================== STATS ==================== */

.stats-section {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  height: 560px;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 0 max(72px, calc((100% - 1431px) / 2));
  pointer-events: none;
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 80px;
}

.stats-left,
.stats-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}

.stats-left {
  text-align: left;
  align-items: flex-start;
}

.stats-right {
  text-align: left;
  align-items: flex-start;
}

.stats-left .stat,
.stats-right .stat {
  max-width: 340px;
  transform: translateY(50vh);
  opacity: 0;
  will-change: transform, opacity;
}

.stat-number {
  display: block;
  font-size: 120px;
  font-weight: 500;
  margin-top: -17px;
}

.stat-label {
  display: block;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
}

/* ==================== SHARED SECTION TITLE ==================== */
.section-title {
  color: #FFF;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
}

/* ==================== FEATURE SECTIONS ==================== */

.feature {
  position: relative;
  z-index: 10;
  background: #12171C;
  display: flex;
  align-items: center;
  gap: 96px;
  padding: 0 max(72px, calc((100% - 1431px) / 2)) 32px;
  overflow: clip;
  will-change: opacity;
  margin-top: 120px;
}

.feature:first-of-type {
  margin-bottom: 128px;
}

.feature-text {
  width: 444px;
  flex-shrink: 0;
  transform: translateY(192px);
  will-change: transform;
}

.feature-description {
  margin-top: 24px;
  color: #D5DADD;
  font-size: 16px;
  line-height: 1.5;
}

.feature-image {
  flex: 1;
  min-width: 0;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@keyframes feature-text-slide-up {
  from {
    translate: 0 192px;
  }

  to {
    translate: 0 0;
  }
}

@keyframes feature-fade-out {
  0% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ==================== AGENDA TABS ==================== */

.agenda {
  position: relative;
  z-index: 10;
  background: #12171C;
  padding: 0 max(72px, calc((100% - 1431px) / 2)) 64px;
  margin-top: 120px;
}

.agenda-title {
  margin-bottom: 24px;
}

.agenda-subtitle {
  color: #D5DADD;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 56px;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid #3C4549;
  margin-bottom: 56px;
}

.tabs-nav a {
  padding: 12px 24px;
  color: #D5DADD;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  user-select: none;
  text-decoration: none;
}

.tabs-nav a:hover {
  color: #FFF;
}

.tabs-nav a:focus-visible {
  outline: 2px solid #A6E0FF;
  outline-offset: -2px;
}

.tab-panel {
  display: none;
  border-radius: 8px;
  border: 1px solid #475E75;
  background: #1A2733;
  box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.60), 0 2px 8px 0 rgba(0, 0, 0, 0.20);
  overflow: auto;
  padding: 24px;
}

.tabs-nav a.active {
  color: #A6E0FF;
  border-bottom-color: #A6E0FF;
}

.tab-panel.active {
  display: block;
}

.agenda-day-header {
  display: flex;
  height: 50px;
  padding: 15px 16px;
  align-items: center;
  align-self: stretch;
  color: #EAECEE;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  border-bottom: 1px solid #3C4549;
}

.agenda-table {
  width: 100%;
  border-collapse: collapse;
}

.agenda-table thead th {
  text-align: left;
  padding: 12px 16px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  border-bottom: 1px solid #3C4549;
}

.agenda-table tbody td {
  padding: 16px;
  color: #EAECEE;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #3C4549;
  vertical-align: top;
}

.agenda-table tbody td:first-child {
  white-space: nowrap;
  color: #EAECEE;
  font-size: 14px;
  line-height: 1.5;
  width: 224px;
}

.agenda-table tbody tr:last-child td {
  border-bottom: none;
}

.agenda-actions {
  display: flex;
  gap: 16px;
  padding-top: 56px;
  justify-content: center;
}

.agenda-actions a {
  display: flex;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #FFF;
  background: transparent;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.agenda-actions a:last-child {
  border: none;
}

.agenda-actions a:only-child {
  border: 1px solid #FFF;
}

.agenda-actions a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FFF;
  color: #FFF;
}

/* ==================== KEYNOTE CARDS ==================== */

.keynote {
  position: relative;
  z-index: 10;
  background: #12171C;
  padding: 0 max(72px, calc((100% - 1431px) / 2)) 64px;
  margin-top: 120px;
}

.keynote-title {
  margin-bottom: 56px;
}

.keynote-cards {
  display: flex;
  gap: 48px;
}

.keynote-card {
  flex: 1;
  min-width: 0;
}

.keynote-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.keynote-card-text {
  padding-top: 24px;
}

.keynote-card-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.keynote-card-description {
  margin-top: 8px;
  color: #FFF;
  font-size: 16px;
  line-height: 1.5;
}

a.content-link {
  margin-top: 20px;
  display: inline-block;
  color: #A6E0FF;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

a.content-link:hover {
  color: #FFF;
  text-decoration: underline;
}

a.content-link:active {
  color: #4DB1FF;
}

.keynote-actions {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.keynote+.keynote {
  padding-top: 84px;
  margin-top: 0;
}

/* ==================== HIGHLIGHT SECTIONS ==================== */

.highlight-scroll-container {
  position: relative;
  z-index: 10;
  background: #12171C;
  margin-top: 120px;
}

.highlight-inner-wrap {
  position: relative;
  z-index: 10;
  background: #12171C;
}

.highlight-sticky-wrapper {
  position: relative;
  z-index: 1;
}

.highlight {
  position: relative;
  background: #12171C;
  display: flex;
  align-items: center;
  gap: 96px;
  padding: 64px max(72px, calc((100% - 1431px) / 2));
}

.highlight-cover {
  position: relative;
  background: #12171C;
}

.highlight-cover:last-child {
  padding-bottom: 350px;
}

.highlight-spacer,
.highlight-placeholder {
  display: block;
}

.highlight-divider {
  display: flex;
  padding: 2px max(72px, calc((100% - 1431px) / 2));
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  background: #12171C;
  position: relative;
}

.highlight-divider hr {
  width: 100%;
  border: none;
  border-top: 1px solid #3C4549;
}

.highlight-text {
  display: flex;
  width: 444px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}



.highlight-description {
  color: #D5DADD;
  font-size: 16px;
  line-height: 1.5;
}

.highlight-subtitle {
  margin-top: 24px;
  color: #D5DADD;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.highlight-image {
  flex: 1;
  min-width: 0;
}

.highlight-image img {
  width: 100%;
  height: 542px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.highlight-separator {
  height: 15px;
  border-top: none;
  margin: 0 auto -1px;
  position: relative;
  z-index: 13;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0;
  background: linear-gradient(to bottom, transparent 50%, #1C0C6E 46%);
}

.highlight-separator::before {
  content: "";
  width: min(var(--icon-size, 280px), 100vw);
  height: min(var(--icon-size, 280px), 100vw);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='281' height='276' viewBox='0 0 281 276' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M139.176 276C139.176 275.972 139.199 275.949 139.227 275.949H140.614C141.336 275.949 141.946 275.41 142.045 274.694C151.787 204.598 208.273 149.119 279.657 139.476C280.422 139.373 281 138.721 281 137.949C281 137.177 280.421 136.526 279.656 136.423C208.302 126.834 151.834 71.3972 142.058 1.34232C141.951 0.577043 141.298 0 140.526 0C139.753 0 139.101 0.576558 138.994 1.34141C129.167 71.4465 72.6983 126.835 1.34386 136.473C0.578566 136.576 0 137.228 0 138C0 138.772 0.578564 139.424 1.34386 139.527C73.1528 149.227 129.886 205.312 139.176 276Z' fill='%231C0C6E'/%3E%3C/svg%3E") center / contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100;
  clip-path: inset(0 0 50% 0);
}

.highlight-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 100vw;
  height: 185px;
  background: #1C0C6E;
  pointer-events: none;
  z-index: 99;
}

@keyframes particle-parallax {
  from {
    opacity: 0;
    transform: translateY(64px) scale(0.3);
  }

  to {
    opacity: 0.8;
    transform: translateY(-32px) scale(1);
  }
}

.join-us-card {
  transform: translateY(48px);
  will-change: transform;
}

@keyframes card-parallax-up {
  from {
    transform: translateY(48px);
  }

  to {
    transform: translateY(0);
  }
}

/* ==================== JOIN US SECTION ==================== */

.join-us {
  position: relative;
  z-index: 15;
  background: #1C0C6E;
  padding: 0 max(72px, calc((100% - 1431px) / 2)) 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 120px;
  overflow: visible;
}

.join-us::before {
  content: '';
  position: absolute;
  left: -8px;
  top: calc(56px * 1.3 + 104px);
  width: 219px;
  height: 219px;
  transform: translateY(var(--join-star-large-y, 0px));
  will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='171' height='219' viewBox='0 0 171 219' fill='none'%3E%3Cpath d='M47.0466 208.692C30.8983 161.287 9.76514 140.174 -37.683 124.04C-51.439 119.26 -51.439 99.5409 -37.683 94.9597C9.76514 78.8261 30.8983 57.7128 47.0466 10.3076C51.6319 -3.43588 71.3689 -3.43588 75.9543 10.3076C92.1026 57.7128 113.235 78.8261 160.683 94.9597C174.439 99.7401 174.439 119.459 160.683 124.04C113.235 140.174 92.1026 161.287 75.9543 208.692C71.3689 222.436 51.6319 222.436 47.0466 208.692Z' fill='%235D36FF' fill-opacity='0.1'/%3E%3Cpath d='M74.7666 10.7041C70.562 -1.89826 52.439 -1.89826 48.2344 10.7041L48.2314 10.7109C40.1232 34.5135 30.723 51.84 17.3047 65.2461C3.88627 78.6522 -13.4562 88.0447 -37.2803 96.1455L-37.2871 96.1475C-49.8742 100.339 -49.9305 118.45 -37.2803 122.854C-13.4562 130.955 3.88627 140.348 17.3047 153.754C30.723 167.16 40.1232 184.486 48.2314 208.289L48.2344 208.296C52.439 220.898 70.562 220.898 74.7666 208.296L74.7686 208.289L75.5332 206.076C83.4689 183.407 92.6974 166.741 105.696 153.754C119.114 140.348 136.456 130.955 160.28 122.854L160.287 122.853L160.868 122.646C172.873 118.098 172.733 100.481 160.28 96.1455C136.456 88.0447 119.114 78.6522 105.696 65.2461C92.278 51.84 82.8768 34.5137 74.7686 10.7109L74.7666 10.7041Z' stroke='%23E2D8FF' stroke-opacity='0.6' stroke-width='2.50431'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1279px) {

  .join-us::before,
  .join-us::after {
    display: none;
  }
}

.join-us::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  width: 145px;
  height: 145px;
  transform: translateY(var(--join-star-small-y, 0px));
  will-change: transform;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='145' height='145' viewBox='0 0 145 145' fill='none'%3E%3Cpath d='M62.9304 138.175C52.2386 106.788 38.2463 92.8092 6.83087 82.1271C-2.27696 78.962 -2.27696 65.9061 6.83087 62.8729C38.2463 52.1908 52.2386 38.2117 62.9304 6.82469C65.9663 -2.2749 79.0342 -2.2749 82.0702 6.82469C92.762 38.2117 106.754 52.1908 138.169 62.8729C147.277 66.038 147.277 79.0939 138.169 82.1271C106.754 92.8092 92.762 106.788 82.0702 138.175C79.0342 147.275 65.9663 147.275 62.9304 138.175Z' fill='%235D36FF' fill-opacity='0.1'/%3E%3Cpath d='M80.8828 7.2207C78.2275 -0.737534 66.7735 -0.73745 64.1182 7.2207L64.1152 7.22852C58.7352 23.0221 52.4842 34.5602 43.5371 43.499C34.5901 52.4378 23.0419 58.6836 7.23438 64.0586L7.22656 64.0605C-0.712663 66.7046 -0.768382 78.1531 7.23438 80.9414C23.0419 86.3164 34.5901 92.5622 43.5371 101.501C52.4842 110.44 58.7352 121.978 64.1152 137.771L64.1182 137.779C66.7735 145.737 78.2275 145.738 80.8828 137.779L80.8848 137.771L81.3916 136.304C86.658 121.26 92.7955 110.161 101.463 101.501C110.41 92.5622 121.958 86.3164 137.766 80.9414L137.773 80.9395L138.14 80.8086C145.712 77.9393 145.643 66.8034 137.766 64.0586C121.958 58.6836 110.41 52.4378 101.463 43.499C92.516 34.5602 86.2648 23.0221 80.8848 7.22852L80.8828 7.2207Z' stroke='%23E2D8FF' stroke-opacity='0.6' stroke-width='2.50431'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.join-us-title {
  color: #FFF;
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.3;
}

.join-us-cards {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.join-us-card {
  max-width: 567px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.join-us-card-image {
  width: 100%;
  /* height: 354px; */
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
}

.join-us-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #1B2228);
  pointer-events: none;
}

.join-us-card-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.join-us-card-content {
  padding: 10px 56px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: #1B2228;
  border-radius: 0 0 12px 12px;
}

.join-us-card-eyebrow {
  color: #D5DADD;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.join-us-card-title {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}

.join-us-card-text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

a.join-us-card-link {
  color: #A6E0FF;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  margin-bottom: 12px;
}

a.content-link::after,
a.join-us-card-link::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00162 10.9997C7.78162 10.9997 7.57162 10.9097 7.42162 10.7497L3.22162 6.34967C2.91162 6.02967 2.93162 5.51967 3.25162 5.21967C3.57162 4.90967 4.08162 4.92967 4.38162 5.24967L8.00162 9.03967L11.6216 5.24967C11.9316 4.92967 12.4316 4.91967 12.7516 5.21967C13.0716 5.52967 13.0816 6.02967 12.7816 6.34967L8.58162 10.7497C8.43162 10.9097 8.22162 10.9997 8.00162 10.9997Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00162 10.9997C7.78162 10.9997 7.57162 10.9097 7.42162 10.7497L3.22162 6.34967C2.91162 6.02967 2.93162 5.51967 3.25162 5.21967C3.57162 4.90967 4.08162 4.92967 4.38162 5.24967L8.00162 9.03967L11.6216 5.24967C11.9316 4.92967 12.4316 4.91967 12.7516 5.21967C13.0716 5.52967 13.0816 6.02967 12.7816 6.34967L8.58162 10.7497C8.43162 10.9097 8.22162 10.9997 8.00162 10.9997Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

a.join-us-card-link:hover {
  color: #FFF;
  text-decoration: underline;
}

a.join-us-card-link:active {
  color: #4DB1FF;
}

.join-us-card-button {
  margin-top: auto;
}

/* -- Top Banner -- */
.top-banner {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}

.top-banner-inner {
  display: flex;
  width: 100%;
  padding: 8px 16px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #7BCFFF;
  background: #E1F4FF;
}

.top-banner-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.top-banner-text {
  color: #131E29;
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
}

.top-banner-link {
  color: #0064D9;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.top-banner-link:hover {
  text-decoration: underline;
}

/* -- Navigation -- */
.nav-topbar {
  border-bottom: 1px solid #8396A8;
  background: #1D232A;
  backdrop-filter: blur(14px);
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 152;
  height: 60px;
  padding-inline: max(72px, calc((100% - 1431px) / 2));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-spacer {
  height: 60px;
}

.nav-topbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
}

.sap-connect-wrapper a:focus-visible:not(.top-banner-link) {
  outline: 2px solid #FFF;
  outline-offset: 2px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  height: 60px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  user-select: none;
}

.nav-item.nav-brand-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item.nav-brand-item::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  border-left: 1px solid #475e75;
}

.nav-item.nav-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
}

.nav-item.nav-separator::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(213, 218, 221, 0.18);
}

.nav-item.has-divider {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.nav-item.has-divider::before {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(213, 218, 221, 0.18);
  align-self: center;
}

a.nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s ease, background-color 0.18s ease;
  border-radius: 0;
}

a.nav-link:hover,
a.nav-desktop-dropdown-link:hover {
  color: #a6e0ff;
}

a.nav-link:focus-visible {
  color: #4DB1FF;
}

a.nav-link:focus-visible,
a.nav-desktop-dropdown-link:focus-visible,
a.nav-right-link:focus-visible,
.nav-register:focus-visible,
.nav-mobile-toggle:focus-visible,
.nav-overflow-toggle:focus-visible,
.nav-overflow-button:focus-visible,
.nav-mobile-dropdown .nav-dropdown-link:focus-visible,
.nav-mobile-dropdown .nav-dropdown-group:focus-visible,
.nav-mobile-dropdown .nav-dropdown-register:focus-visible {
  outline: 2px solid #FFF;
  outline-offset: 2px;
  border-radius: 4px;
}

a.nav-link.is-active::after,
.nav-item.has-dropdown.has-active-child>.nav-link::after,
.nav-overflow-toggle.has-active-child::after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  background: #A6E0FF;
  border-radius: 2px 2px 0 0;
  bottom: -20px;
  right: 0;
  width: 100%;
}

.nav-link.has-children {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.nav-link-arrow,
.nav-mobile-toggle .nav-chevron,
.nav-overflow-toggle .nav-chevron {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00162 10.9997C7.78162 10.9997 7.57162 10.9097 7.42162 10.7497L3.22162 6.34967C2.91162 6.02967 2.93162 5.51967 3.25162 5.21967C3.57162 4.90967 4.08162 4.92967 4.38162 5.24967L8.00162 9.03967L11.6216 5.24967C11.9316 4.92967 12.4316 4.91967 12.7516 5.21967C13.0716 5.52967 13.0816 6.02967 12.7816 6.34967L8.58162 10.7497C8.43162 10.9097 8.22162 10.9997 8.00162 10.9997Z' fill='white'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00162 10.9997C7.78162 10.9997 7.57162 10.9097 7.42162 10.7497L3.22162 6.34967C2.91162 6.02967 2.93162 5.51967 3.25162 5.21967C3.57162 4.90967 4.08162 4.92967 4.38162 5.24967L8.00162 9.03967L11.6216 5.24967C11.9316 4.92967 12.4316 4.91967 12.7516 5.21967C13.0716 5.52967 13.0816 6.02967 12.7816 6.34967L8.58162 10.7497C8.43162 10.9097 8.22162 10.9997 8.00162 10.9997Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 16px 16px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  transform-origin: center;
  flex-shrink: 0;
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown.is-open .nav-link-arrow {
  transform: rotate(180deg);
}

.nav-desktop-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 260px;
  background: #1a2733;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  box-shadow: 0 0 0 1px #ffffff59, 0 10px 30px 0 #0009;
  z-index: 200;
}

.nav-item.has-dropdown.is-open .nav-desktop-dropdown {
  display: block;
}

a.nav-desktop-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

a.nav-desktop-dropdown-link:hover {
  background: #2e3b48;
  color: #FFF;
}

a.nav-desktop-dropdown-link.is-active {
  color: #A6E0FF;
  position: relative;
}

a.nav-desktop-dropdown-link.is-active::before {
  background: #A6E0FF;
  border-end-end-radius: 2px;
  border-start-end-radius: 2px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 3px;
}

/* a.nav-desktop-dropdown-link.is-hero-current {
      color: #0064D9;
    } */
a.nav-right-link {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  margin-right: 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

a.nav-right-link:hover {
  color: #A6E0FF;
}

a.nav-right-link:focus-visible {
  color: #4DB1FF;
}

a.nav-register,
.nav-mobile-dropdown .nav-dropdown-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  margin-left: 8px;
  border-radius: 8px;
  border: 1px solid #0070F2;
  background: #0070F2;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-mobile-dropdown .nav-dropdown-register {
  padding: 8px 9px;
  font-size: 16px;
}

a.nav-register:hover,
.nav-mobile-dropdown .nav-dropdown-register:hover {
  background: #0064D8;
  border-color: #0064D8;
  color: #FFF;
}

/* -- Collapsed nav (narrow screens) -- */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #FFF;
  cursor: pointer;
  height: 60px;
  flex: 1;
  padding: 0;
}

.nav-mobile-toggle .nav-chevron {
  position: relative;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  background-color: #4DB1FF;
}

.nav-mobile-active {
  display: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-mobile-active::before {
  display: none;
}

.nav-mobile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background: #1a2733;
  border: none;
  border-radius: 0;
  padding: 16px max(72px, calc((100vw - 1431px) / 2));
  box-shadow: 0 10px 30px 0 #0009;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  visibility: hidden;
  max-height: calc(100vh - 60px - var(--main-nav-height, 0px));
  overflow-y: auto;
}

.nav-mobile-dropdown.is-open {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-mobile-dropdown .nav-dropdown-link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-mobile-dropdown .nav-dropdown-link.is-active {
  color: #4DB1FF;
}

/* .nav-mobile-dropdown a.nav-dropdown-link.is-hero-current {
      color: #0064D9;
    } */
.nav-mobile-dropdown .nav-dropdown-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0 8px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.18s ease;
}

.nav-mobile-dropdown .nav-dropdown-group:hover {
  color: #FFF;
}

.nav-mobile-dropdown .nav-dropdown-group .nav-group-chevron {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6L8 9.5 11.5 6' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6L8 9.5 11.5 6' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav-mobile-dropdown .nav-dropdown-group[aria-expanded="true"] .nav-group-chevron {
  transform: rotate(180deg);
}

.nav-mobile-dropdown .nav-dropdown-group.has-active-child {
  color: #4DB1FF;
}

.nav-mobile-dropdown .nav-dropdown-nested {
  display: none;
  flex-direction: column;
  padding-left: 20px;
}

.nav-mobile-dropdown .nav-dropdown-nested .nav-dropdown-link {
  font-weight: 400;
}

.nav-mobile-dropdown .nav-dropdown-nested.is-open {
  display: flex;
}

.nav-mobile-dropdown .nav-dropdown-divider {
  border: none;
  border-top: 1px solid #2e3b48;
  margin: 8px 0;
}

.nav-mobile-dropdown .nav-dropdown-register {
  margin: 16px 0 0;
  border-top: 1px solid rgba(213, 218, 221, 0.14);
}

.nav-overflow-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  height: fit-content;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
  align-self: center;
}

.nav-overflow-toggle:hover,
.nav-overflow-toggle:focus-visible {
  color: #A6E0FF;
}

.nav-overflow-toggle.has-active-child {
  position: relative;
}

.nav-overflow-toggle .nav-chevron {
  position: relative;
}

.nav-overflow-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-overflow-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 60vh;
  overflow-y: auto;
  background: #1a2733;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  box-shadow: 0 0 0 1px #ffffff59, 0 10px 30px 0 #0009;
  z-index: 220;
}

.nav-overflow-dropdown.is-open {
  display: block;
}

.nav-overflow-dropdown .nav-dropdown-group {
  display: block;
  padding: 8px 20px 4px;
  color: #EAECEE;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav-overflow-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #D5DADD;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-overflow-button:hover,
.nav-overflow-button:focus-visible {
  background: #2e3b48;
  color: #FFF;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Wide desktop */
@media screen and (min-width: 1280px) {
  .hero {
    padding: 40px 72px 0;
  }

  .top-banner {
    max-width: 1432px;
    margin-inline: auto;
  }

  .highlight-image {
    width: 813px;
    height: 542px;
  }

  .highlight-separator {
    z-index: 11;
  }
}

/* Desktop */
@media screen and (max-width: 1280px) {

  .feature,
  .agenda,
  .keynote,
  .highlight-scroll-container {
    margin-top: 84px;
  }

  .keynote+.keynote {
    margin-top: 0;
  }

  .nav-overflow-dropdown,
  .nav-desktop-dropdown {
    top: 40px;
  }

  .hero {
    padding: 24px 72px 0;
    height: auto;
  }

  .hero-text-group {
    animation: none;
    opacity: 1;
    transform: none;
    margin-top: 24px;
  }

  .card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .card:not(.card--large) {
    animation: none;
    margin-bottom: 0;
  }

  .card--large {
    animation: none;
    opacity: 1;
  }

  .hero-title {
    font-size: 68px;
  }

  .hero-description {
    font-size: 18px;
    margin-top: 16px;
  }

  .hero-cta {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .card:not(.card--large) {
    width: 124px;
    height: 179px;
  }

  .card--large {
    width: 230px;
    height: 294px;
  }

  .cards-section {
    align-items: center;
    gap: 24px;
  }

  .card-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
  }

  .stats-section {
    position: relative;
    top: auto;
    height: auto;
    margin-top: 0;
    padding: 84px max(72px, calc((100% - 1431px) / 2)) 0;
    pointer-events: auto;
    z-index: 30;
    align-items: center;
  }

  .section-title {
    font-size: 32px;
  }

  .stats-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    align-items: stretch;
    row-gap: 56px;
    column-gap: 48px;
    height: auto;
    margin: 0 auto;
    font-size: 32px;
  }

  .stats-left,
  .stats-right {
    display: contents;
  }

  .stats-left .stat,
  .stats-right .stat {
    opacity: 1;
    transform: none;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .stat-number {
    font-size: 64px;
  }

  .stat-label {
    font-size: 32px;
  }

  .keynote-actions {
    padding-top: 40px;
  }

  .feature-description {
    font-size: 16px;
  }

  .feature-image {
    width: 468px;
    height: auto;
    flex: none;
  }

  .feature-image img {
    /* height: 100%; */
    object-fit: cover;
  }

  .feature {
    gap: 48px;
  }

  .feature-title {
    font-size: 32px;
  }

  .feature-text {
    transform: translateY(32px);
    width: clamp(320px, 35vw, 480px);
  }

  .highlight {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 48px;
  }

  .highlight-image img {
    height: 312px;
  }

  .highlight-cover:last-child {
    margin-top: 0;
    padding-bottom: 220px;
  }

  .join-us {
    padding-top: 0;
    margin-top: 84px;
  }

  .join-us-card {
    width: 394px;
  }

  .join-us-card-title {
    font-size: 28px;
  }

  .join-us-card-content {
    padding: 10px 40px 40px;
  }

  .join-us-card-image img {
    height: 290px;
  }

  .hero {
    height: auto;
    overflow: visible;
  }

  .hero-date {
    font-size: 20px;
  }

  .hero-badge {
    margin-top: 8px;
  }

  .hero-scroll-container {
    overflow: visible;
  }

  .nav-item.has-divider::before {
    display: none;
  }

  .nav-item.has-divider {
    gap: 0;
  }

  .nav-brand {
    height: auto;
    padding: 0;
  }
}

/* Tablet */
@media screen and (max-width: 980px) {
  .highlight-inner-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .highlight-sticky-wrapper,
  .highlight-cover {
    position: relative !important;
    top: auto;
    transform: none !important;
    margin-top: 0 !important;
  }

  .highlight-spacer,
  .highlight-placeholder {
    display: none !important;
  }

  .tabs-nav {
    margin-bottom: 40px;
  }

  .nav-topbar {
    padding-inline: 48px;
  }

  .hero-date {
    font-size: 16px;
  }

  .hero-title {
    font-size: 56px;
    margin-top: 0;
  }

  .hero-description {
    font-size: 16px;
    margin-top: 16px;
  }

  .card-text {
    font-size: 16px;
  }

  .hero-cta {
    margin-top: 0;
    margin-bottom: 34px;
  }

  .hero-scroll-container {
    min-height: auto;
    overflow: visible;
  }

  .hero {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 24px 48px;
  }

  .hero-text-group {
    animation: none;
    opacity: 1;
    transform: none;
    margin-top: 24px;
  }

  .cards-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 24px;
    row-gap: 30px;
    padding: 0 16px 32px;
    animation: none;
  }

  .card {
    width: 100%;
    max-width: none;
    height: 224px;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .card:not(.card--large) {
    animation: none;
    margin-bottom: 0;
  }

  .card:not(.card--large):hover {
    top: 0;
  }

  .card-overlay {
    background: linear-gradient(to top, rgba(18, 23, 28, 0.55) 0%, rgba(18, 23, 28, 0) 50%);
    opacity: 1;
  }

  .card:hover .card-overlay {
    opacity: 1;
  }

  .card:not(.card--large) img {
    mask-image: linear-gradient(to bottom, black 30%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent);
  }

  .card--large {
    order: -1;
    grid-column: 1 / -1;
    width: 320px;
    max-width: 320px;
    justify-self: center;
    height: 400px;
    animation: none;
    opacity: 1;
    z-index: 3;
  }

  .stats-section {
    position: relative;
    opacity: 1;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 56px 24px 0;
    pointer-events: auto;
  }

  .stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    align-items: stretch;
    row-gap: 40px;
    column-gap: 48px;
    width: 100%;
  }

  .stats-left,
  .stats-right {
    display: contents;
  }

  .stats-left .stat,
  .stats-right .stat {
    opacity: 1;
    transform: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .stat-number {
    font-size: 56px;
  }

  .stat-label {
    font-size: 20px;
  }

  .feature {
    flex-direction: column;
    gap: 32px;
    padding: 0 48px;
  }

  .feature:first-of-type {
    margin-bottom: 84px;
    margin-top: 0;
    padding: 0 48px 0;
  }

  .feature-text {
    width: 100%;
    order: -1;
    transform: none;
  }

  .section-title {
    font-size: 28px;
  }

  .keynote-title {
    margin-bottom: 40px;
  }

  .keynote-actions {
    padding-top: 40px;
  }

  .agenda {
    padding: 0 48px;
  }

  .tab-panels {
    overflow: auto;
  }

  .agenda-table tbody td:first-child {
    width: auto;
    white-space: normal;
  }

  .keynote {
    padding: 0 48px;
  }

  .keynote-cards {
    flex-direction: column;
    gap: 32px;
  }

  .highlight {
    flex-direction: column;
    gap: 32px;
    padding: 48px 48px;
  }

  .highlight-text {
    width: 100%;
  }

  .highlight-image img {
    height: 362px;
  }

  .highlight-cover:last-child {
    padding-bottom: 184px;
  }

  .highlight-divider {
    padding-left: 48px;
    padding-right: 48px;
  }

  .highlight-separator::before {
    width: 280px;
    height: 280px;
    clip-path: none;
  }

  .highlight-separator::after {
    height: 120px;
  }

  .join-us {
    padding: 84px 48px 84px;
    margin-top: 0;
    gap: 0;
  }

  .join-us-title {
    font-size: 28px;
    z-index: 10;
  }

  .join-us-cards {
    flex-wrap: wrap;
  }

  .join-us-card {
    width: 100%;
    max-width: none;
    height: 654px;
  }

  .join-us-card:first-of-type {
    padding-top: 40px;
  }

  .join-us-card-title {
    font-size: 24px;
  }

  .join-us-card-image img {
    height: auto;
  }
}

/* Navigation */
@media screen and (max-width: 980px) {

  .nav-topbar,
  .nav-topbar-nav {
    height: 64px;
  }

  .nav-topbar,
  .nav-mobile-dropdown {
    padding-inline: 48px;
  }

  .nav-spacer {
    height: 60px;
  }

  .nav-topbar:has(.nav-mobile-dropdown.is-open) {
    border-bottom: 1px solid #4DB1FF;
  }

  .nav-item.nav-brand-item::after {
    display: none;
  }

  .nav-list .nav-item:not(:first-child) {
    display: none;
  }

  .nav-item.has-divider::before {
    display: none;
  }

  .nav-item.has-divider {
    gap: 0;
  }

  .nav-brand {
    font-size: 18px;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-mobile-active {
    display: block;
  }

  .nav-register {
    display: none;
  }

  .nav-overflow-toggle,
  .nav-overflow-dropdown {
    display: none !important;
  }
}

/* Mobile landscape */
@media screen and (max-width: 640px) {
  a.btn-register {
    padding: 9px 10px;
  }

  .nav-topbar,
  .nav-mobile-dropdown {
    padding-inline: 24px;
  }

  .hero-text-group {
    margin-top: 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .cards-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0 0 0;
    overflow: visible;
  }

  .stats-section {
    margin-top: 40px;
    padding: 45px 16px 0;
  }

  .card--large {
    max-width: 100%;
    width: 288px;
    height: 320px;
    order: -1;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }

  .cards-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 0 24px;
    scrollbar-width: none;
    position: relative;
  }

  .cards-slider::-webkit-scrollbar {
    display: none;
  }

  .card:not(.card--large) {
    flex: 0 0 148px;
    height: 192px;
    scroll-snap-align: start;
    width: 148px;
  }

  .card {
    max-width: 100%;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.1;
  }

  .feature-description {
    margin-top: 16px;
  }

  .feature-image {
    width: auto;
    height: auto;
  }

  .feature,
  .agenda,
  .keynote {
    padding: 0 24px;
    margin-top: 40px;
  }

  .feature,
  .agenda,
  .highlight,
  .keynote {
    padding: 0 24px;
  }

  .highlight-scroll-container {
    margin-top: 40px;
  }

  .keynote+.keynote {
    margin-top: 0;
    padding-top: 40px;
  }

  .agenda-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    align-items: stretch;
    gap: 24px;
  }

  .stats-left,
  .stats-right {
    display: contents;
  }

  .stats-left .stat,
  .stats-right .stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .highlight-image img {
    height: 288px;
  }

  .join-us {
    padding: 40px 24px 80px;
  }

  .join-us-cards {
    flex-direction: column;
    gap: 40px;
  }

  .join-us-card {
    width: 100%;
    height: 503px;
  }

  .join-us-card:first-of-type {
    padding-top: 24px;
  }

  .join-us-card-title {
    font-size: 20px;
    line-height: 1.1;
  }

  .join-us-card-text {
    margin-bottom: 16px;
  }

  .join-us-card-content {
    padding: 10px 24px 24px;
  }

  .highlight-separator::before {
    width: 180px;
    height: 180px;
    clip-path: none;
  }

  .highlight-cover:last-child {
    padding-bottom: 84px;
  }

  .hero {
    padding: 16px 16px 0;
  }

  .hero-badge {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .feature:first-of-type {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 24px;
  }

  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    max-width: 100%;
    height: 192px;
  }

  .card--large {
    max-width: 100%;
    height: 320px;
  }

  .stats-left,
  .stats-right {
    display: contents;
  }

  .stats-left .stat,
  .stats-right .stat {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.5;
  }

  .tabs-nav a {
    padding: 8px 16px;
    font-size: 14px;
  }

  .tab-panel {
    padding: 0 0 0 16px;
  }

  .tabs-nav {
    margin-bottom: 24px;
  }

  .agenda-subtitle {
    margin-bottom: 16px;
  }

  .agenda-table tbody td {
    font-size: 14px;
    padding: 12px 8px;
  }

  .highlight {
    padding: 32px 24px;
  }

  .highlight-divider {
    padding-left: 24px;
    padding-right: 24px;
  }
}

div .highlight-cover:last-child {
  padding-bottom: 0;
}
div .highlight-separator {
  margin-top: 84px;
}
.highlight-divider hr {
  border-color: #475E75;
}
.lob_section {
  overflow: hidden;
  margin-top: 40px;
}
.lob_title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  color: white;
  text-align: center;
  max-width: 1576px;
  margin: auto;
  padding-inline: 24px;
}
.lob_items {
  --items-gap: 24px;
  overflow-x: auto;
  display: flex;
  gap: var(--items-gap);
  padding: 24px 24px 40px;
}
.lob_items .card {
  width: 145px;
  height: 200px;
}

.lob_items::-webkit-scrollbar {
  display: none;
}
.card.card--large {
  --start-x: 0;
}
@media (min-width: 640px) {
  div .highlight-separator {
    margin-top: 184px;
    margin-top: 140px;
  }
  .lob_section {
    margin-top: 84px;
  }
  .lob_title {
    padding-inline: 48px;
    font-size: 28px;
  }
  .lob_items {
    padding: 40px 48px 84px;
    margin: auto;
    max-width: 917px;
  }
}
@media (min-width: 980px) {
  div .highlight-separator {
    margin-top: 220px;
    margin-top: 140px;
  }
  .lob_title {
    padding-inline: 72px;
    font-size: 32px;
  }
  .lob_items {
    padding-top: 56px;
    padding-inline: 72px;
    max-width: none;
  }
  .lob_items .card {
    width: calc((100% - var(--items-gap) * 4 )/5);
    height: auto;
  }
  .lob_items:has(.card:hover) .card:hover .card-overlay,
  .card-overlay {
    opacity: .2;
  }
  .lob_items:has(.card:hover) .card-overlay {
    opacity: .55;
  }
  .card-text {
    text-shadow: 0px 0px 20px black;
  }
}
@media (min-width: 1280px) {
  div .highlight-separator {
    margin-top: 350px;
    margin-top: 275px;
    margin-top: 200px;
  }
  .lob_section {
    margin-top: 120px;
  }
  .lob_title {
    font-size: 40px;
  }
  .lob_items {
    padding-top: 84px;
    margin: auto;
    max-width: 1576px;
    --items-gap: 48px;
  }
}

.sc_container {
  margin: auto;
  padding-inline: 24px;
  max-width: 1576px;
}
.sc_sponsors {
  background: #1C0C6E;
  padding-block: 24px 56px;
  text-align: center;
}
.sc_sponsors_title {
  margin-top: 0;
  margin-bottom: 24px;
  color: white;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}
.sc_sponsors_text {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.5;
}
.sc_sponsors_tiles {
  --tiles-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--tiles-gap);
  margin-block: 40px;
}
.sc_sponsors_tile {
  display: block;
  border-radius: 8px;
  width: calc((100% - var(--tiles-gap) * 1) / 2);
}
.sc_sponsors_cta {
  display: flex;
  justify-content: center;
}
.sc_btn,
.sc_btn:visited {
  display: inline-block;
  text-decoration: none;
  border: 1px solid white;
  color: white;
  background: transparent;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sc_btn:hover {
  color: rgba(166, 224, 255, 1); /*#a6e0ff*/
  border-color: rgba(166, 224, 255, 1);
  background: transparent;
}
.sc_btn:active {
  background: rgba(166, 224, 255, 0.1);
}
.sc_btn:focus, .sc_btn:focus-visible {
  outline: 2px solid #5ea8ff;
  outline: 2px solid white;
  outline-offset: 2px;
}
@media (min-width: 640px) {
  .sc_container {
    padding-inline: 48px;
  }
  .sc_sponsors {
    padding-block: 48px 84px;
  }
  .sc_sponsors_title {
    font-size: 28px;
  }
  .sc_sponsors_tiles {
    margin-block: 56px;
  }
  .sc_sponsors_tile {
    width: calc((100% - var(--tiles-gap) * 2) / 3);
  }
}
@media (min-width: 980px) {
  .sc_container {
    padding-inline: 72px;
  }
  .sc_sponsors {
    padding-block: 12px 84px;
  }
  .sc_sponsors_title {
    font-size: 32px;
  }
  .sc_sponsors_tile {
    width: calc((100% - var(--tiles-gap) * 3) / 4);
  }
}
@media (min-width: 1280px) {
  .sc_sponsors {
    padding-block: 48px 120px;
  }
  .sc_sponsors_title {
    font-size: 40px;
  }
  .sc_sponsors_tile {
    width: calc((100% - var(--tiles-gap) * 5) / 6);
  }
}
