* {
  box-sizing: border-box;
}

:root {
  --mint: #c7d904;
  --white: #ffffff;
  --black: #000000;
  --bg: #f4f6f3;
  --text: #3f3f3f;
  --dark: #1e1e1e;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(
  to bottom,
  #c7d904 0%,
  #dce790 15%,
  #edf2d0 35%,
  #f4f6f3 100%
);
  background-attachment: fixed;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-page {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.landing-hero {
  text-align: center;
  padding: 10px 0 52px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.landing-logo {
  display: block;
  width: min(500px, 100%);
  margin: 0 auto 30px;
  object-fit: contain;
}

.landing-hero h1,
.about-section h2,
.about-section h3 {
  color: var(--mint);
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  text-shadow: 0 3px 0 rgba(0,0,0,0.25);
}

.landing-hero h1 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

.about-section h2 {
  margin: 0 0 26px;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.about-section h3 {
  margin: 46px 0 18px;
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.lava-heading {
  font-family: 'BebasNeue', Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
}

.landing-hero > .landing-tagline.lost-tagline {
  font-family: 'Lexend', Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-size: 1.8rem !important;
  line-height: 1.05 !important;
  max-width: 1000px !important;
  margin: 0 auto 28px !important;
  color: #2f2f2f;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  padding: 10px 26px;
  background: var(--dark);
  color: var(--white);
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  border-color: var(--mint);
  color: var(--mint);
}

.ticket-btn {
  background: var(--mint);
  color: var(--black);
}

.ticket-btn:hover {
  background: #b8ffdd;
  color: var(--black);
  border-color: transparent;
}

.about-section {
  max-width: 920px;
  margin: 12px auto 0;
}

.about-section p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.9;
}

.centered-description {
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.about-section ul {
  margin: 0;
  padding-left: 24px;
}

.centered-goals {
  text-align: center;
  list-style-position: inside;
  padding-left: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.about-section li {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-section li::marker {
  color: var(--mint);
}

@media (max-width: 700px) {
  .landing-page {
    width: calc(100% - 22px);
    padding-top: 16px;
  }

  .landing-hero {
    padding-bottom: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }

  .about-section {
    margin-top: 42px;
  }

  .about-section p,
  .about-section li {
    font-size: 1rem;
  }

  .about-section h2,
  .about-section h3 {
    white-space: normal;
  }
}

.scroll-divider {
  margin-top: 6px;
  margin-bottom: -6px;
  display: flex;
  justify-content: center;
}

.scroll-indicator {
  font-size: 3rem;
  line-height: 1;
  color: var(--mint);
  -webkit-text-stroke: 2px #000;
  paint-order: stroke fill;
  animation: floatArrow 1.6s ease-in-out infinite;
}

@keyframes floatArrow {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.copyright {
  margin-top: 16px;
  margin-bottom: 26px;
  text-align: center;
  color: #7a7a7a;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .landing-page {
    padding-top: 8px;
  }

  .landing-hero {
    padding-top: 4px;
    padding-bottom: 32px;
  }

  .landing-logo {
    margin: 0 auto 16px;
  }

  .landing-hero > .landing-tagline.lost-tagline {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 700px) {
  .scroll-divider {
    margin-top: 22px;
  }
}