body.landing-page {
  padding: 0rem;
  align-items: center;
  display: flex;
  min-height: 100dvh;
}

.landing-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
  max-width: none;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 1rem;
  flex-grow: 1;
}

.hero-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1024px;
  padding: 1rem 1rem 4rem;
  width: 100%;

  /* mobile-medium */
  @media (min-width: 400px) {
    padding: 2rem 1rem 4rem;
  }

  /* tablet */
  @media (min-width: 600px) {
    padding: 8rem 2.5rem 10rem;
  }
}

/* Main Heading */
.hero-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);

  /* mobile-medium */
  @media (min-width: 400px) {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  /* tablet */
  @media (min-width: 600px) {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Tagline styling */
.hero-tagline {
  color: var(--color-text-subtle);
  line-height: 1.5rem;
  font-size: 1rem;
  margin: 1.5rem auto 2.5rem;
  font-weight: 500;

  /* tablet */
  @media (min-width: 600px) {
    line-height: 2rem;
    font-size: 1.5rem;
  }
}

/* Main hero message */
.hero-message {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--bg-overlay);
  border-radius: 12px;
  font-weight: 500;

  /* mobile-medium */
  @media (min-width: 400px) {
    margin: 2rem auto 3rem;
  }

  & p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;

    /* mobile-medium */
    @media (min-width: 400px) {
      font-size: 1.125rem;
      line-height: 1.7;
    }
  }
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem auto;
  max-width: 400px;
  color: var(--brand-base);

  .timer-item {
    background-color: var(--bg-elevated);
    padding: 0.125rem 0.25rem;
    border-radius: var(--border-radius-sm);

    /* tablet */
    @media (min-width: 600px) {
      padding: 0.25rem 0.5rem;
    }
  }

  .timer-number {
    font-size: 1.75rem;
    font-weight: 700;

    /* tablet */
    @media (min-width: 600px) {
      font-size: 2rem;
    }
  }

  .timer-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-subtle);

    /* tablet */
    @media (min-width: 600px) {
      font-size: 1rem;
    }
  }
}

.landing-page-section {
  padding: 2.5rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 1200px;
  width: 100%;

  .section-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--color-text);
    text-align: center;
  }

  .section-description {
    font-size: 1.125rem;
    color: var(--color-text-subtle);
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 650px;
    text-align: center;
    font-weight: 500;
  }
}

/* Value propositions section */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
  position: relative;
}

@media (max-width: 768px) {
  .value-props {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.value-prop {
  display: grid;
  grid-template: "icon title" "description description" / 2rem auto;
  column-gap: 0.5rem;
  row-gap: 1.5rem;
  align-items: center;

  .value-prop-icon {
    grid-area: icon;
    color: var(--color-text-reversed);
    background-color: var(--color-primary);
    border-radius: var(--border-radius-xs);
    padding: 0.4rem;
    width: 2rem;
    height: 2rem;
  }

  h3 {
    grid-area: title;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 700;
  }

  p {
    grid-area: description;
    color: var(--color-text-subtle);
    font-size: 1rem;
  }
}

.landing-page-banner {
  background-color: var(--color-bg-overlay);
  color: var(--color-text);
  width: 100%;
  padding: 4rem 0rem;

  .banner-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    padding: 2rem 2.5rem;
    margin: 0 auto;

    /* tablet */
    @media (min-width: 600px) {
      flex-direction: row;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }

    h2 {
      font-size: 2.25rem;
      line-height: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .banner-text {
      font-size: 1.125rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .banner-cta-button {
      display: flex;
      flex-direction: row;
      align-items: center;
      color: var(--color-text);
      border-radius: var(--border-radius-sm);
      padding: 1rem 1.5rem;
      flex-shrink: 0;
      font-size: 1rem;
      gap: 0.5rem;
      font-weight: 600;
      width: fit-content;
      transition: var(--transition);
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px var(--bg-elevated);
        background: linear-gradient(
          135deg,
          var(--bg-elevated) 0%,
          var(--bg-elevated) 100%
        );
      }
    }
  }
}

/* CTA Section */

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-cta-button {
  text-decoration: none;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--brand-base) 0%,
    var(--brand-strong) 100%
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(91, 69, 224, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  &:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 20px var(--brand-base);
    background: linear-gradient(
      135deg,
      var(--brand-base) 0%,
      var(--brand-base) 100%
    );
  }

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

  &::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
  }

  &:hover::after {
    animation: shine 1.5s ease-out;
  }
}
