html {
  scroll-behavior: smooth;
}
.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.site-header .brand {
display: flex;
    /* justify-content: flex-start; */
    height: 74px;
    width: 180px;
    overflow: visible;
    color: #18203a;
    font-size: 21px;
    /* justify-self: start; */
    flex-direction: row;
    align-items: flex-end;
}

.site-header .brand img {
    display: block;
    width: 230px;
    height: auto;
    max-width: none;
    object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.main-nav a {
  font-size: 13px;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--c);
}
.site-header .register-link {
  justify-self: end;
  border-radius: 999px;
  padding: 10px 15px;
  background: #080e26;
  white-space: nowrap;
  font-size: 12px;
}
.register-link span {
  margin-left: 4px;
}
.menu-section {
  padding: 95px 24px;
  background: #fff;
}
.menu-section:nth-of-type(even) {
  background: var(--p);
}
.section-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.6px;
  color: var(--b);
  text-transform: uppercase;
}
.menu-section h2 {
  max-width: 650px;
  margin: 0 auto 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--d);
}
.menu-section p:not(.section-label) {
  max-width: 600px;
  margin: 0 auto;
  color: #5b6475;
  line-height: 1.7;
}
.section-agenda,
.section-partners {
  background: linear-gradient(135deg, #f0f4ff, #f8fbff) !important;
}
.category-grid {
     display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    grid-auto-flow: column;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.category-grid article {
  padding: 26px 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--d);
  font-weight: bold;
  box-shadow: 0 8px 24px #2147c614;
}
.category-grid small {
  display: block;
  margin-top: 7px;
  color: var(--b);
  font-weight: normal;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 50% 30%,
    #263e9d 0,
    #0f1b4c 42%,
    #070d28 100%
  );
  overflow: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.loader-star {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px #fff;
  animation: starfall linear infinite;
}
.loader-star::after {
   content: "";
    position: absolute;
    top: 0;
    left: 1px;
    width: 90px;
    height: 1px;
    background: linear-gradient(
        90deg,
        #ffffffcc,
        transparent
    );
    transform: rotate(-35deg);
    transform-origin: left center;
}
@keyframes starfall {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  to {
    transform: translate3d(-180px, 115vh, 0);
    opacity: 0;
  }
}
.loader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.loader-content strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 26px;
  letter-spacing: 0.05em;
}
.loader-content strong i {
  font-style: normal;
  color: var(--g);
}
.loader-content p {
  margin: 0;
  color: #ffffffa8;
}
.loader-mark {
  color: var(--g);
  font-size: 35px;
  display: block;
  animation: pulse 1.4s ease-in-out infinite;
}
.loader-event-logo {
    display: block;
    width: min(85vw, 450px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 8px 18px #0008);
}

@media (max-width: 700px) {
    .loader-event-logo {
        width: 90vw;
        height: auto;
    }
}
@keyframes pulse {
  50% {
    transform: scale(1.24);
    filter: drop-shadow(0 0 10px var(--g));
  }
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .main-nav {
    grid-column: 1/-1;
    grid-row: 2;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 20px;
  }
  .site-header .register-link {
    font-size: 11px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .menu-section {
    padding: 70px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none;
  }
  .loader-star,
  .loader-mark {
    animation: none;
  }
}
.team-builder {
  grid-column: 1/-1;
  margin-top: 14px;
  padding: 28px;
  border-radius: 16px;
  background: #ffffff12;
  border: 1px solid #ffffff2b;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.team-builder h3 {
  font-size: 23px;
}
.team-builder p {
  line-height: 1.65;
  color: #ffffffba;
}
.team-builder form {
  padding: 0 !important;
  background: transparent !important;
  color: #fff !important;
}
.team-builder label {
  color: #fff;
}
@media (max-width: 700px) {
  .team-builder {
    grid-template-columns: 1fr;
  }
}
.event-countdown {
  margin-top: 28px;
  color: var(--g);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.45;
}
.section-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 220px;
  margin: 0 auto 24px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 8px 16px #0f1b4c18);
}
.space-apps-mark {
  height: 72px;
  max-width: 250px;
}
.innovathon-mark {
  height: 62px;
  max-width: 190px;
}
.nok-mark {
  height: 52px;
  max-width: 180px;
}
.menu-section {
  background: #e8edf7;
}
.menu-section h2 {
  color: #111a43;
}
.section-agenda {
  background: #10183d !important;
  color: #fff;
}
.section-agenda h2,
.section-agenda p:not(.section-label) {
  color: #fff;
}
.mission-section {
  background: #dce7f7 !important;
}
.mission-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}
.mission-points article {
  min-height: 124px;
  padding: 17px;
  border-left: 3px solid var(--r);
  background: #ffffffaa;
}
.mission-points span {
  display: block;
  margin-bottom: 12px;
  color: var(--r);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.mission-points p {
  margin: 0 !important;
  color: #18203a !important;
  font-size: 14px;
  line-height: 1.5 !important;
}
.section-categories {
  background: #f2eee9 !important;
}
.venue-section {
  background: #172047 !important;
  color: #fff;
}
.venue-section h2,
.venue-section p:not(.section-label) {
  color: #fff;
}
.venue-section .section-logo,
.section-partners .section-logo {
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}
.section-partners {
  background: #ffffff !important;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  margin: 34px auto 0;
  max-width: 1050px;
}
.partner-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #ffffffaa;
  border-radius: 8px;
}
.partner-logo img {
  display: block;
  width: 100%;
  height: 66px;
  object-fit: contain;
}
.contact-section {
  background: #f3deda !important;
  display: flex;
}
.agenda-switcher {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 24px;
}
.agenda-day {
  min-width: 140px;
  padding: 9px 14px;
  border: 1px solid #ffffff55;
  border-radius: 10px;
  background: #ffffff18;
  color: #fff;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.agenda-day small {
  display: block;
  margin-top: 4px;
  color: #ffffffaa;
  font-size: 11px;
  font-weight: normal;
}
.agenda-day:hover,
.agenda-day.is-active {
  background: var(--r);
  border-color: var(--r);
  transform: translateY(-2px);
}
.agenda-panel {
     display: flex;
    /* position: relative; */
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 16px 0 4px;
    text-align: left;
    /* overflow-x: auto; */
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}
.agenda-panel[hidden] {
  display: none;
}
.agenda-line {
  position: absolute;
  top: 56px;
  left: 30px;
  right: 30px;
  width: auto;
  height: 2px;
  background: #ffffff42;
}
.agenda-event {
  position: relative;
  z-index: 1;
  display: inline-grid;
  grid-template-rows: 28px 1fr;
  gap: 14px;
  vertical-align: top;
  width: 18.7%;
    min-width: 24%;  
    margin: 0 1% 12px 0;
}
.agenda-event time {
  padding-left: 12px;
  color: #dce7f7;
  font-size: 13px;
  font-weight: bold;
  text-align: left;
}
.agenda-event > div {
  position: relative;
  min-height: 150px;
  padding: 14px 16px;
  border-left: 1px solid #ffffff35;
  border-bottom: 1px solid #ffffff35;
  background: #ffffff0d;
}
.agenda-event > div::before {
  position: absolute;
  top: -24px;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid #10183d;
  border-radius: 50%;
  background: var(--g);
  content: "";
}
.agenda-event-featured > div { background: #ffffff20; }
.agenda-event-closing > div { border-color: #db240b88; }
.agenda-event-closing > div::before { background: var(--r); }
.agenda-tag {
  color: var(--g);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.agenda-event h3 {
  margin: 5px 0;
  color: #fff;
  font-size: 17px;
}
.agenda-event p {
  margin: 0 0 6px;
  color: #ffffffc7 !important;
  font-size: 13px;
  line-height: 1.5;
}
.agenda-event small { color: #ffffff8f; font-size: 12px; }
@media (max-width: 700px) {
  .mission-points {
    grid-template-columns: 1fr;
  }
  .agenda-switcher { gap: 8px; }
  .agenda-day { min-width: 0; flex: 1; padding: 11px 10px; }
  .agenda-panel { white-space: nowrap; padding-bottom: 12px; }
  .agenda-event { width: 250px; white-space: normal; }
  .agenda-line { top: 56px; left: 20px; right: 20px; }
  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.event-logos-top {
display: flex;
    align-items: center;
    justify-content: space-around;
    /* gap: 32px; */
    /* margin: 0 auto 28px; */
    position: relative;
    z-index: 4;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
.event-logo {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: 50% !important;
  object-fit: contain;
  opacity: 1 !important;
  transform: none !important;
  filter: drop-shadow(0 10px 18px #0005);
}

@media (max-width: 700px) {
  .event-logos-top {
    gap: 14px;
    margin-bottom: 20px;
  }
  .event-logo {
    height: 60px !important;
    max-width: 145px !important;
  }
  .event-logo:first-child {
    height: 72px !important;
    max-width: 175px !important;
  }
}
.is-submitting {
  opacity: .72;
  pointer-events: none;
}
.form-progress {
  padding: 10px;
  border-radius: 8px;
  background: #eaf0ff;
  color: var(--b);
  font-size: 13px;
}

@media (min-width: 701px) {
  .register > #individual-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
    align-content: start;
  }
  .register > #individual-form h3,
  .register > #individual-form #individual-message,
  .register > #individual-form .check,
  .register > #individual-form .button {
    grid-column: 1 / -1;
  }
  .register > #individual-form h3 {
    margin-top: 4px;
    margin-bottom: 2px;
  }
  .register > #individual-form label {
    margin: 7px 0;
  }
  .register > #individual-form .button {
    justify-self: start;
  }
 .contact-content h2 { color: #fff; }
    .contact-content .eyebrow { color: rgba(104, 91, 91, 0.7); }
    .contact-content .divider { background: var(--green); }
    .contact-content p { color: rgba(16, 16, 16, 0.72); line-height: 1.7; margin-bottom: 2rem; }
    .contact-info {
             display: flex;
        gap: 1rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center; }
    .contact-info-item {
      display: flex; align-items: center; gap: .9rem;
      color: rgba(15, 14, 14, 0.8); font-size: .9rem;
    }
    .contact-info-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgb(5 5 5 / 38%); display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }

}

/* ==============================
   AWARDS
============================== */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: center;
}


/* ==============================
   CARD
============================== */
.award-card {
  position: relative;
  padding: 2rem;
  min-height: 360px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* ==============================
   ICON
============================== */

.award-icon {
  height: 90px;
  margin-bottom: 1.5rem;
}

.award-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* ==============================
   LABEL
============================== */

.award-label {
  margin: 0 0 0.5rem;

  font-size: 0.75rem;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  opacity: 0.55;
}


/* ==============================
   TITLE
============================== */

.award-title {
  margin: 0 0 1rem;

  font-size: 1.35rem;
}


/* ==============================
   DESCRIPTION
============================== */

.award-description {
  font-size: 0.9rem;

  line-height: 1.55;

  opacity: 0.7;
}


/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1000px) {

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .awards-grid {
    grid-template-columns: 1fr;
  }

}
