:root {
  --app-theme-secondary-color: #fff;
  --app-theme-primary-color: #000;
  --font-normal-color: #4E5065FA;
}

html {
  scroll-behavior: smooth;
  cursor: help;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/*------- top ------*/

.app-index-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.45);
  
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.app-index-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.app-index-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: MontserratEB;
  cursor: help;
}

.app-index-nav a[active] {
    border-bottom: .4em dashed var(--app-theme-secondary-color);
}
.sign-up-login-wrap {
  display: flex;
  gap: .6em;
  width: 95%;
}

.sign-up-login-wrap #redi-signup {
  flex-basis: 60%;
}

.sign-up-login-wrap #redi-login {
  flex-basis: 40%;
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  outline: 0;
  background: transparent;
  color: #fff;
}
.close-btn svg {
  fill: #fff;
  height: 40px;
  width: 40px;
}

.first-sec-wrap {
  background: var(--app-theme-primary-color);
  color: #fff;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-logo {
  width: 150px;
  height: auto;
}

.app-index-hamburger-icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.app-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 650px;
  margin: auto;
}

.app-hero-content strong {
    font-family: MontserratEB;
}

.app-hero-title {
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  font-family: MontserratEB;
}

.beelooo-pricing-badge {
    font-family: MontserratEB;
    border-radius: 20px;
    color: var(--app-theme-secondary-color);
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: .91em;
}

.app-hero-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 5px;
  font-family: NatoSansR;
}


.app-primary-btn {
  font-family: MontserratEB;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  
  border: none;
  border-radius: 12px;
  background: var(--app-theme-secondary-color);
  color: #000;
  
  font-size: 1.05rem;
  font-weight: 700;
  transition: .25s;
}


.app-primary-btn:hover {
  transform: translateY(-2px);
}

.app-primary-btn:active {
  transform: scale(.98);
}

/* ==========================
   About Section
========================== */

.about-section {
  padding: 100px 20px;
  background: #fff;
  margin-top: 0;
  padding-bottom: 0;
}

.about-section .container {
  width: min(100%, 900px);
  margin: 0 auto;
}

.section-tag {
  font-family: MontserratEB;
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-section h2 {
  margin-bottom: 28px;
  color: #111827;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-section p {
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-section p:last-child {
  margin-bottom: 0;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 768px) {
  .about-section {
    padding: 70px 18px;
  }
  
  .about-section h2 {
    font-family: MontserratEB;
    font-size: 2rem;
  }
  
  .about-section p {
    font-family: NatoSansR;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .section-tag {
    font-size: 0.85rem;
    padding: 7px 16px;
  }
}