:root {
  --sand: #fff8e9;
  --sun: #ffd166;
  --sun-dark: #f4a340;
  --aqua: #18a7a0;
  --aqua-dark: #0c746f;
  --leaf: #39735f;
  --leaf-soft: #e4f4de;
  --wood: #a96f3d;
  --ink: #26443c;
  --muted: #6d8079;
  --paper: #ffffff;
  --line: rgba(38, 68, 60, 0.14);
  --shadow: 0 24px 80px rgba(24, 121, 116, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


.promo-hero {
  position: relative;
  min-height: clamp(460px, 62vh, 640px);
  padding: calc(74px + 44px) 20px 38px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_green.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.promo-hero.theme-red {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_red.webp");
}

.promo-hero.theme-blue {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_blue.webp");
}

.promo-hero.theme-green {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_green.webp");
}

.promo-hero.theme-yellow {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_yellow.webp");
}

.promo-hero.theme-orange {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_orange.webp");
}

.promo-hero.theme-purple {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_purple.webp");
}

.promo-hero.theme-pink {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_pink.webp");
}

.promo-hero.theme-white {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_white.webp");
}

.promo-hero.theme-black {
  background-image:
    linear-gradient(180deg, rgba(14, 68, 63, 0.2) 0%, rgba(14, 68, 63, 0.08) 56%, rgba(14, 68, 63, 0.34) 100%),
    url("../images/bg/bg_black.webp");
}

.hero-app {
  display: contents;
}

.promo-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.promo-logo {
  width: clamp(96px, 13vw, 150px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.promo-copy {
  max-width: 680px;
}

.promo-copy h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.25rem);
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.promo-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.35;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.promo-copy p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.promo-actions {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.promo-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.promo-button.signup {
  background: var(--aqua);
}

.promo-button.admin {
  background: #3ddb06;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--aqua);
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 167, 160, 0.26);
}

.button.secondary {
  border: 1px solid rgba(24, 167, 160, 0.25);
  background: rgba(255, 255, 255, 0.72);
  color: var(--aqua-dark);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1140px, calc(100% - 40px));
  margin: -74px auto 0;
  margin-top: 24rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

@media (max-width: 560px) {
  .container,
  .intro-band {
    width: min(100% - 28px, 1140px);
  }

  .brand {
    width: 178px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .promo-hero {
    min-height: 500px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .promo-copy p {
    margin-bottom: 22px;
  }
}
