:root {
  --lp-color-surface: #ffffff;
  --lp-color-ink: #0f172a;
  --lp-color-muted: #475569;
  --lp-color-border: #e2e8f0;
  --lp-color-emerald: #16a34a;
  --lp-color-hero-a: #5ec29e;
  --lp-color-hero-b: #43a882;
  --lp-color-hero-c: #2d7a5d;
  --lp-shell: 72rem;
  --lp-transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-nav,
.lp-footer {
  color: var(--lp-color-ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp-nav *,
.lp-nav *::before,
.lp-nav *::after,
.lp-footer *,
.lp-footer *::before,
.lp-footer *::after {
  box-sizing: border-box;
}

.lp-nav a,
.lp-footer a {
  color: inherit;
  text-decoration: none;
}

.lp-nav img,
.lp-nav svg,
.lp-footer img,
.lp-footer svg {
  display: block;
  max-width: 100%;
}

.lp-nav button {
  font: inherit;
  cursor: pointer;
}

.lp-footer p,
.lp-footer ul {
  margin: 0;
}

.lp-shell {
  width: min(calc(100% - 3rem), var(--lp-shell));
  margin-inline: auto;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button--primary {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--lp-color-hero-a) 0%,
    var(--lp-color-hero-b) 50%,
    var(--lp-color-hero-c) 100%
  );
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(67, 168, 130, 0.3);
}

.lp-button--primary:hover {
  box-shadow: 0 12px 32px rgba(67, 168, 130, 0.45);
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lp-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

.lp-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.3rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
}

.lp-brand__name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.lp-nav__menu-link,
.lp-footer__list a {
  transition: color var(--lp-transition);
}

.lp-nav__menu-link:hover,
.lp-footer__list a:hover {
  color: var(--lp-color-emerald);
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav__cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.lp-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
}

.lp-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lp-color-ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.lp-nav__toggle span + span {
  margin-top: 4px;
}

.lp-nav.is-open #hamburger-top {
  transform: rotate(45deg) translate(4px, 4px);
}

.lp-nav.is-open #hamburger-mid {
  opacity: 0;
}

.lp-nav.is-open #hamburger-bot {
  transform: rotate(-45deg) translate(4px, -4px);
}

.lp-mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.lp-mobile-nav__link {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--lp-color-ink);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color var(--lp-transition), color var(--lp-transition);
}

.lp-mobile-nav__link:hover {
  background: rgba(220, 252, 231, 0.5);
}

.lp-mobile-nav__cta {
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
}

.lp-footer {
  padding-block: 4rem 0;
  background: var(--lp-color-ink);
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  font-size: 0.875rem;
}

.lp-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-footer__logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
}

.lp-footer__name,
.lp-footer__heading {
  color: #ffffff;
  font-weight: 800;
}

.lp-footer__heading {
  margin: 0 0 1rem;
}

.lp-footer__list {
  padding: 0;
  list-style: none;
}

.lp-footer__list li + li {
  margin-top: 0.5rem;
}

.lp-footer__legal {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

@media (max-width: 64rem) {
  .lp-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 56rem) {
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  .lp-nav__links,
  .lp-nav__cta {
    display: none;
  }

  .lp-nav__toggle {
    display: inline-flex;
  }

  .lp-brand__logo {
    width: 45px;
    height: 45px;
  }

  .lp-brand__name {
    font-size: 1.4rem;
  }

  .lp-mobile-nav__inner {
    align-items: center;
  }

  .lp-mobile-nav__link {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-nav *,
  .lp-nav *::before,
  .lp-nav *::after,
  .lp-footer *,
  .lp-footer *::before,
  .lp-footer *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .lp-button:hover {
    transform: none;
  }
}
