@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap");
@font-face {
  font-family: "DINNextPro-Ultralight";
  src: url("./fonts/DINNextPro-UltraLight.ttf") format("truetype");
}
@font-face {
  font-family: "DINNextPro-Light";
  src: url("./fonts/DINNextPro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "DINNextPro-Regular";
  src: url("./fonts/DINNextPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "DINNextPro-Medium";
  src: url("./fonts/DINNextPro-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "DINNextPro-Bold";
  src: url("./fonts/DINNextPro-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Moonrock";
  src: url("./fonts/moonrock.otf") format("opentype");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DINNextPro-Regular";
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 0 20px;
  }
}

.hero-banner {
  padding: 130px 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.hero-banner .banner-top {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  row-gap: 35px;
}
.hero-banner .banner-top .logo-innovation {
  width: 300px;
  display: block;
}
.hero-banner .banner-top .title-small {
  font-size: 28px;
  font-family: "DINNextPro-Ultralight";
}
.hero-banner .banner-top .title-small.title-small-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-banner .banner-top .title-small.title-small-line::after {
  content: "";
  height: 3px;
  flex-grow: 1;
  background: #fff;
  border-radius: 1px;
  margin-right: 5px;
}
.hero-banner .banner-top .hero-title {
  font-family: "Moonrock";
  font-size: 51px;
  line-height: 1;
  margin: 6px 0;
}
.hero-banner .banner-top .logo {
  display: block;
}
.hero-banner .banner-top .logo img {
  display: block;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-banner .banner-content {
  display: flex;
}
.hero-banner .banner-content .content-left {
  flex: 2;
}
.hero-banner .banner-content .content-left .hero-desc {
  font-size: 20px;
  font-family: "DINNextPro-Ultralight";
  margin-bottom: 20px;
  line-height: 1.3;
  padding-right: 80px;
}
.hero-banner .banner-content .content-left .banner-venue {
  margin-top: 50px;
}
.hero-banner .banner-content .content-left .banner-venue > a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
  text-decoration: none;
  color: inherit;
}
.hero-banner .banner-content .content-left .banner-venue .icon img {
  width: 35px;
  height: 35px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-banner .banner-content .content-left .banner-venue .title {
  text-transform: uppercase;
  font-family: "DINNextPro-Bold";
  margin-bottom: 5px;
}
.hero-banner .banner-content .content-left .banner-venue .desc {
  font-family: "DINNextPro-Light";
}
.hero-banner .banner-content .content-right {
  flex: 3;
}
.hero-banner .banner-content .content-right img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  margin-top: -220px;
  margin-left: -120px;
  margin-bottom: -100px;
}
@media (max-width: 991px) {
  .hero-banner .banner-content {
    flex-direction: column;
    gap: 50px;
  }
  .hero-banner .banner-content .content-right img {
    margin-top: 0;
    margin-left: -50px;
    margin-bottom: -60px;
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    padding: 80px 0 0;
  }
  .hero-banner .banner-top {
    flex-direction: column-reverse;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .hero-banner .banner-content .content-left .hero-desc {
    padding-right: 0;
  }
  .hero-banner .banner-content .content-right img {
    margin-left: -20px;
  }
}

.stats-section {
  padding: 120px 0 80px;
}
.stats-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.stats-section .stat-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 240px;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  background: white;
  display: flex;
  align-items: center;
}
.stats-section .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(45deg, #e11d48, #7e22ce);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.stats-section .stat-card .stat-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stats-section .stat-card .stat-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stats-section .stat-card .stat-number {
  font-size: 80px;
  font-family: "DINNextPro-Light";
  line-height: 1;
}
.stats-section .stat-card .stat-label {
  font-size: 18px;
  color: #444;
  padding-left: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "DINNextPro-Light";
  margin-top: -8px;
}
@media (min-width: 768px) {
  .stats-section .stat-card {
    flex: 1 1 calc(25% - 20px);
  }
}

.video-section {
  padding: 0 0 60px;
}
.video-section .container {
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  position: relative;
  max-width: 1240px;
}
.video-section iframe {
  width: 100%;
  height: 700px;
}
.video-section .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  cursor: pointer;
}
.video-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  text-align: center;
}
.video-section .play-button img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.video-section .play-button-text {
  font-family: "DINNextPro-Bold";
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video-section video {
  width: 100%;
  border-radius: 16px;
  display: block;
}
.video-section .hidden {
  display: none;
}
@media (max-width: 600px) {
  .video-section .container {
    max-width: 90%;
    margin: 0 auto;
  }
  .video-section iframe {
    width: 100%;
    height: 350px;
  }
}

.agenda-section {
  padding: 60px 0;
}
.agenda-section .container.agenda-container {
  display: flex;
  gap: 40px;
  align-items: start;
}
.agenda-section .agenda-image {
  flex: 3;
  max-width: 50%;
}
.agenda-section .agenda-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.agenda-section .agenda-content {
  flex: 4;
}
.agenda-section .title {
  font-size: 50px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 40px;
  font-family: "Open Sans";
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #e82667, #443393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.agenda-section .timeline {
  position: relative;
  padding-left: 20px;
}
.agenda-section .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: #B4236C;
}
.agenda-section .timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}
.agenda-section .timeline-item:last-child {
  margin-bottom: 0;
}
.agenda-section .timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 15px;
  height: 15px;
  background: white;
  border: 2px solid #B4236C;
  transform: rotate(45deg);
}
.agenda-section .day-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.agenda-section .day-date {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.agenda-section .day-description {
  color: #333;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .agenda-section .container {
    flex-direction: column;
    gap: 2rem;
  }
  .agenda-section .agenda-image {
    max-width: 100%;
  }
  .agenda-section .title {
    font-size: 35px;
    text-align: center;
  }
  .agenda-section .timeline {
    padding-left: 1.5rem;
  }
  .agenda-section .timeline-item {
    padding-left: 1rem;
  }
  .agenda-section .timeline-item::before {
    left: -1.5rem;
    width: 12px;
    height: 12px;
  }
}

.zone-section {
  padding: 0 0 60px;
}
.zone-section .zone {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 2px solid #777;
}
.zone-section .zone:last-child {
  border-bottom: none;
}
.zone-section .zone-img {
  min-width: 250px;
}
.zone-section .zone-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}
.zone-section .zone-title {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Open Sans";
  line-height: 1;
  margin-bottom: 5px;
}
.zone-section .zone-subtitle {
  font-size: 23px;
  font-family: "DINNextPro-Light";
  color: #666;
  text-transform: uppercase;
  line-height: 1;
}
.zone-section .zone-content {
  flex-grow: 1;
}
.zone-section .zone-features {
  list-style: none;
}
.zone-section .zone-feature {
  font-family: "DINNextPro-Light";
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 18px;
}
.zone-section .zone-feature:last-child {
  margin-bottom: 0;
}
.zone-section .feature-bullet {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  transform: rotate(45deg);
  border: 2px solid #b4357a;
}
@media (max-width: 768px) {
  .zone-section .zone {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .zone-section .zone-icon {
    width: 60px;
    height: 60px;
  }
  .zone-section .zone-title {
    font-size: 20px;
  }
  .zone-section .zone-subtitle {
    font-size: 16px;
  }
}

.objective-section {
  padding: 0 0 60px;
}
.objective-section .objective {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
}
.objective-section .objective:last-child {
  border-bottom: none;
}
.objective-section .title {
  font-size: 50px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 0 30px;
  font-family: "Open Sans";
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #e82667, #443393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.objective-section .objective-img {
  min-width: 90px;
  width: 90px;
}
.objective-section .objective-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 15px;
}
.objective-section .objective-content {
  flex-grow: 1;
}
.objective-section .objective-features {
  list-style: none;
}
.objective-section .objective-feature {
  font-family: "DINNextPro-Light";
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 24px;
  max-width: 800px;
}
.objective-section .objective-feature:last-child {
  margin-bottom: 0;
}
.objective-section .feature-bullet {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  transform: rotate(45deg);
  border: 2px solid #b4357a;
}
@media (max-width: 768px) {
  .objective-section .objective {
    gap: 20px;
    align-items: flex-start;
  }
  .objective-section .objective-feature {
    font-size: 18px;
    gap: 8px;
  }
  .objective-section .feature-bullet {
    width: 10px;
    height: 10px;
  }
  .objective-section .objective-img {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .objective-section .objective-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .objective-section .title {
    font-size: 35px;
    text-align: center;
  }
  .objective-section .objective-icon {
    width: 60px;
    height: 60px;
  }
}

.startup-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #E2DEED 0%, #fbdce7 100%);
}
.startup-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.startup-section .title {
  font-size: 50px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 40px;
  font-family: "Open Sans";
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #e82667, #443393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.startup-section .cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.startup-section .card {
  background: linear-gradient(145deg, #4B2A80 0%, #C23B80 100%);
  border-radius: 15px;
  padding: 40px;
  color: white;
  width: 100%;
  max-width: 350px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.startup-section .card-title {
  font-family: "Open Sans";
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.startup-section .card-name {
  font-family: "Open Sans";
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.startup-section .card-description {
  line-height: 1;
  font-family: "DINNextPro-Ultralight";
  font-size: 20px;
}
.startup-section .copyright {
  font-family: "DINNextPro-Ultralight";
  text-align: center;
  color: #333;
}
@media (max-width: 768px) {
  .startup-section {
    padding: 30px 0;
  }
  .startup-section .title {
    font-size: 35px;
  }
  .startup-section .card {
    max-width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */