
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

:root {
  --primary: #fff;
  --secondary: #033159;

  --gray01: #212529;
  --gray02: #2c343e;
  --gray03: #728ca1;
  --gray04: #a0a3bd;
  --gray05: #d6d8e7;
  --gray06: #f7f7fc;
  --white: #fff;
  --light: #012840;
  --light2: #8a8a8a;
  --light3: #6a6a6a;
  --light4: #8a8a8a;
  --light5: rgba(255, 255, 255, 0.25);

  --black: #0a0a0a;
}

.container {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
}

.blue {
  color: #001639;
}

.blue_primary {
  color: #2d49ab;
}

.blue_light {
  color: #2d49ab;
}

.red {
  color: #f44336;
}

.green {
  color: #279e64;
}

.black {
  color: var(--black);
}

.secondary {
  color: var(--secondary);
}

.light {
  color: var(--light);
}

.light2 {
  color: var(--light2);
}

.light3 {
  color: var(--light3);
}

.light4 {
  color: var(--light4);
}

.light5 {
  color: var(--light5);
}

.white {
  color: var(--white);
}

.primary {
  color: var(--primary);
}

.gray1 {
  color: var(--gray01);
}

.gray2 {
  color: var(--gray02);
}

.gray3 {
  color: var(--gray03);
}

.gray4 {
  color: var(--gray04);
}

.gray5 {
  color: var(--gray05);
}

.gray6 {
  color: var(--gray06);
}

.margin4 {
  margin-bottom: 4px;
}

.margin8 {
  margin-bottom: 8px;
}

.margin12 {
  margin-bottom: 12px;
}

.margin16 {
  margin-bottom: 16px;
}

.margin20 {
  margin-bottom: 20px;
}

.margin24 {
  margin-bottom: 24px;
}

.margin32 {
  margin-bottom: 32px;
}

.margin40 {
  margin-bottom: 40px;
}

.text_color {
  background: var(--Gradient-Linear-Blue, linear-gradient(135deg, #2d49ab 0%, #121d45 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a {
  text-decoration: none;
  color: black;
  display: flex;
  transition:
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease;
}

a:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

a:active {
  transform: translateY(0);
}

li {
  list-style: none;
}

/* Heading One */
.heading60 {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -2px;
}

/* Heading Two */
.heading48 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: -2px;
}

/* Heading Three */
.heading36 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -2px;
}

/* Heading Four */
.heading24 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

/* Heading Five */
.heading20 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

/* Heading Six */
.heading18 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

/* Paragraph Text - 400 */
.body16 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Paragraph Text - 500 */
.body16_500 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/* Body14 */
.body14 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/* Tag12 */
.tag12 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/* Link14 */
.link14 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/* Link16 */
.link16 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2px;
}

button {
  background-color: transparent;
  border: none;
}

.text_overline {
  border-radius: 250px;
  background: #141414;
  width: fit-content;
  color: #a19a94;
  padding: 8px 16px;
}

.background_center {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.button_primary {
  border-radius: 8px;
  background: #f44336;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  display: flex;
  padding: 16px 28px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button_primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.button_wpp {
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(93deg, rgba(0, 191, 61, 0.8) 0%, rgba(0, 140, 48, 0.8) 100%);
  box-shadow: 0 82px 235px 0 rgba(0, 48, 121, 0.21);
  backdrop-filter: blur(35px);
  display: flex;
  padding: 8px 24px 8px 8px;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.button_primary:hover::before {
  left: 100%;
}

.button_primary:hover {
  background: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  transform: scale(0.98);
}

.button_primary2 {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button_primary2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.button_primary2:hover::before {
  left: 100%;
}

.button_primary2:hover {
  background: #b91c1c;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  transform: scale(0.98);
}

.button_secondary {
  border-radius: 8px;
  background: linear-gradient(94deg, #2d49ab 49.36%, #121d45 99.53%);
  padding: 8px 20px;
  padding: 10px 24px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button_secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
}

.button_secondary:hover::before {
  left: 100%;
}

.fit_width {
  width: fit-content;
}

.underline {
  border-bottom: 2px solid #dc2626;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.underline:hover::after {
  width: 100%;
}

.font300 {
  font-weight: 300;
}

.font400 {
  font-weight: 400;
}

.font500 {
  font-weight: 500;
}

.font600 {
  font-weight: 600;
}

.font700 {
  font-weight: 700;
}

.font800 {
  font-weight: 800;
}

.font900 {
  font-weight: 900;
}

.ajust_gap4 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ajust_gap8 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ajust_gap12 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ajust_gap16 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ajust_gap20 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ajust_gap24 {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ajust_gap32 {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .heading60 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -1.5px;
  }

  .heading48 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.5px;
  }

  .heading36 {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -1.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .heading60 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1px;
  }

  .heading48 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.5px;
  }

  .heading36 {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .heading24 {
    font-size: 20px;
    line-height: 28px;
  }

  .heading20 {
    font-size: 18px;
    line-height: 24px;
  }

  .ajust_gap32 {
    gap: 20px;
  }

  .ajust_gap24 {
    gap: 16px;
  }

  .button_primary {
    padding: 14px 24px;
  }

  .button_wpp {
    padding: 8px 20px 8px 8px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .heading60 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.5px;
  }

  .heading48 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -1px;
  }
}

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-reveal > *:not(.mobile_menu) {
  opacity: 0;
  transform: translateY(20px);
}

.section-reveal.visible > *:not(.mobile_menu) {
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-reveal.visible > *:not(.mobile_menu):nth-child(1) {
  animation-delay: 0.05s;
}

.section-reveal.visible > *:not(.mobile_menu):nth-child(2) {
  animation-delay: 0.12s;
}

.section-reveal.visible > *:not(.mobile_menu):nth-child(3) {
  animation-delay: 0.19s;
}

.section-reveal.visible > *:not(.mobile_menu):nth-child(4) {
  animation-delay: 0.26s;
}

.section-reveal.visible > *:not(.mobile_menu):nth-child(5) {
  animation-delay: 0.33s;
}

/* Backward compatibility */
.fade-up.visible.delay-1 {
  animation-delay: 0.1s;
}
.fade-up.visible.delay-2 {
  animation-delay: 0.2s;
}
.fade-up.visible.delay-3 {
  animation-delay: 0.3s;
}
.fade-up.visible.delay-4 {
  animation-delay: 0.4s;
}
.fade-up.visible.delay-5 {
  animation-delay: 0.5s;
}

/* Scroll Spotlight Effect */
.spotlight-item {
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
  opacity: 0;
  transform: translateY(30px);
}

.spotlight-item.spotlight-active {
  opacity: 1;
  transform: translateY(0);
}

.spotlight-item.spotlight-passed {
  opacity: 0.3;
  transform: translateY(0);
}

.spotlight-item.spotlight-upcoming {
  opacity: 0;
  transform: translateY(30px);
}

@media (prefers-reduced-motion: reduce) {
  a,
  .fade-up,
  .fade-up.visible,
  .section-reveal > *:not(.mobile_menu),
  .section-reveal.visible > *:not(.mobile_menu) {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
