/* =========================================================
   Nav + Hero + Trust strip
   ========================================================= */

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 24, 20, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__mark {
  width: 150px;
  height: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 168px 0 88px;
  background-color: #0f1814;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 14, 11, 0.82) 0%,
      rgba(8, 14, 11, 0.62) 38%,
      rgba(8, 14, 11, 0.32) 70%,
      rgba(8, 14, 11, 0.18) 100%
    ),
    url("/meta-mountain-5.jpg");
  background-repeat: no-repeat;
  background-position: center, center right;
  background-size: cover, cover;
  color: #ffffff;
}

.hero--validation {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 14, 11, 0.82) 0%,
      rgba(8, 14, 11, 0.62) 38%,
      rgba(8, 14, 11, 0.32) 70%,
      rgba(8, 14, 11, 0.18) 100%
    ),
    url("/ben-franklin-validation.jpg");
}

.hero--no-template-approval {
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 14, 11, 0.82) 0%,
      rgba(8, 14, 11, 0.62) 38%,
      rgba(8, 14, 11, 0.32) 70%,
      rgba(8, 14, 11, 0.18) 100%
    ),
    url("/boombox-no-template-approval.png");
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(15, 24, 20, 0.55));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-block: 12px;
}

.hero h1 {
  color: #ffffff;
  max-width: none;
  margin: 14px 0 0;
}

.hero .lede {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.hero .text-whatsapp {
  color: var(--green-bright);
}

.hero-highlight {
  color: #dfffea;
  font-weight: 700;
}

.hero__cta {
  margin-top: 30px;
}

/* Hero marquee — 3 slots, all swap together on a slow smooth cycle */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 28px; z-index: 1;
  display: flex; justify-content: center;
  pointer-events: none;
  padding: 0 24px;
}
.hero-marquee__row {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  max-width: 1080px;
  width: 100%;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-marquee__row.is-entering { opacity: 1; filter: blur(0); transform: translateY(0); }
.hero-marquee__row.is-leaving  { opacity: 0; filter: blur(4px); transform: translateY(-6px); }

.hero-marquee__slot {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 14px; font-weight: 700; letter-spacing: -0.005em;
  white-space: nowrap;
  min-width: 0;
}
.hero-marquee__icon {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(58,239,136,0.14);
  border: 1px solid rgba(58,239,136,0.35);
  color: #3aef88;
  flex-shrink: 0;
  position: relative;
  animation: heroIconPulse 2.8s ease-in-out infinite;
}
.hero-marquee__icon svg { width: 12px; height: 12px; }
@keyframes heroIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,239,136,0.40); }
  50%      { box-shadow: 0 0 0 6px rgba(58,239,136,0); }
}
@media (max-width: 720px) {
  .hero-marquee__row { gap: 10px 20px; }
  .hero-marquee__slot { font-size: 12.5px; }
}
.check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

/* ---------- Trust strip ---------- */
.trust {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 163, 74, 0.18), transparent 32rem),
    linear-gradient(180deg, #17231e 0%, #0f1814 100%);
  color: #ffffff;
}

.trust .container {
  padding-block: 26px;
  display: flex;
  justify-content: center;
}

.trust__line {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}
