/**
 * Landing Page Styles
 * Based on Figma design (Landing.Figma.css)
 */

/* === Hero Section === */
.hero-section {
  background: url('../visuals/DPNV.logo.png') center/cover;
  background-color: var(--color-bg-light);
  border-radius: 30px;
  padding: 156px 115px;
  margin: 17px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-headline {
  font-family: 'LensGrotesk-Light', var(--font-family);
  font-weight: 300;
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -0.019em;
  color: var(--color-text-dark);
  max-width: 1210px;
  margin-bottom: 32px;
}

.hero-headline .highlight {
  color: var(--color-primary);
}

.hero-subtext {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.019em;
  color: var(--color-text-dark);
  max-width: 1080px;
  margin: 0 auto;
}

.hero-subtext .depin-link {
  color: var(--color-primary);
  text-decoration: none;
  cursor: help;
}

/* === Stats Section === */
.landing-stats {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 132px;
  padding: 40px 107px;
  margin: 60px auto;
  max-width: 1440px;
  position: relative;
}

.landing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.landing-stat-value {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 63px;
  line-height: 150%;
  letter-spacing: -0.019em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.landing-stat-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: -0.022em;
  color: var(--color-text-dark);
  max-width: 240px;
}

/* Divider lines between stats */
.landing-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -66px;
  top: 13px;
  width: 1px;
  height: 126px;
  background: var(--color-border);
}

/* === Call to Action === */
.cta-section {
  text-align: center;
  padding: 40px 135px;
  margin: 80px auto 60px;
  max-width: 1440px;
}

.cta-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.019em;
  color: var(--color-text-dark);
  max-width: 1154px;
  margin: 0 auto 60px;
}

.cta-text .highlight-green {
  color: var(--color-primary);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 88px;
  height: 100px;
  background: linear-gradient(116.03deg, #7FC8CC -12.92%, #549B9F 91.49%);
  box-shadow: 0px 20px 30px rgba(84, 155, 159, 0.25);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;

  font-family: var(--font-family);
  font-weight: 500;
  font-size: 47px;
  line-height: 150%;
  letter-spacing: -0.019em;
  color: #FFFFFF;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 24px 36px rgba(84, 155, 159, 0.35);
}

.cta-button:active {
  transform: translateY(0);
}

/* === Responsive Adjustments === */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 48px;
  }

  .landing-stats {
    gap: 80px;
    padding: 40px 60px;
  }

  .landing-stat:not(:last-child)::after {
    right: -40px;
  }

  .cta-button {
    font-size: 38px;
    padding: 12px 60px;
    height: 80px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 80px 40px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 20px;
  }

  .landing-stats {
    flex-wrap: wrap;
    gap: 60px 40px;
  }

  .landing-stat:not(:last-child)::after {
    display: none;
  }

  .landing-stat-value {
    font-size: 48px;
  }

  .landing-stat-label {
    font-size: 22px;
  }

  .cta-text {
    font-size: 20px;
  }

  .cta-button {
    font-size: 32px;
    padding: 10px 40px;
    height: 70px;
  }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .landing-stats {
    flex-direction: column;
    gap: 40px;
  }

  .landing-stat-value {
    font-size: 40px;
  }

  .landing-stat-label {
    font-size: 18px;
  }
}
