.hero {
  position: relative;
  background: var(--color-surface);
  overflow: hidden;
  display: grid;
}

.hero__bg-fade-white {
  position: absolute;
  inset: 30% 0 auto 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--color-white) 100%);
  pointer-events: none;
}

.hero__bg-fade-blue {
  position: absolute;
  inset: auto 0 0 0;
  height: 85%;
  background: linear-gradient(
    180deg,
    transparent 3.5%,
    rgba(240, 245, 254, 0.06) 20%,
    rgba(140, 182, 248, 0.47) 43%,
    rgb(8, 99, 241) 72%,
    rgb(10, 37, 65) 103%
  );
  pointer-events: none;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  margin-block-start: 20px;
  background: var(--color-white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 23px rgba(138, 138, 138, 0.1);
  position: relative;
  z-index: 2;
}

.navbar__logo {
  width: 40px;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.navbar__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-inline: auto;
  font-size: clamp(14px, 0.5rem + 0.5vw, 16px);
  color: var(--color-text);
}

.navbar__links a:hover {
  opacity: 0.65;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--color-primary);
  border: 1px solid var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.navbar__cta:hover {
  background: var(--color-primary-hover);
}

/* Hamburger — hidden on desktop */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px;
  flex-shrink: 0;
}

/* Mobile dropdown — hidden by default */
.navbar__mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar__links {
    display: none;
  }

  .navbar__cta {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    font-size: 16px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    margin-top: 8px;
  }

  .navbar--menu-open .navbar__mobile-menu {
    display: flex;
  }

  .navbar__mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-text);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  }

  .navbar__mobile-menu a:last-child {
    border-bottom: none;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
  padding-block: 4vi 2vi;
}

.hero__eyebrow {
  font-size: clamp(14px, 0.6rem + 0.7vw, 18px);
  line-height: 1.4;
  color: var(--color-text);
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6.5px);
  background: linear-gradient(
    90deg,
    transparent 15%,
    rgba(8, 98, 239, 0.05) 49%,
    transparent 111%
  );
}

.hero__heading {
  font-weight: 400;
  font-size: clamp(1.75rem, 1rem + 3.5vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-inline-size: 1200px;
}

.hero__description {
  font-size: clamp(0.875rem, 0.6rem + 0.8vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text-muted);
  max-inline-size: 700px;
}

.hero__highlight {
  color: #1a1a1a;
  background-color: rgba(255, 181, 46, 0.84);
  padding: 2px 6px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__checks {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 0 16px 30px;
}

.hero__check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__check-item img {
  width: 20px;
  aspect-ratio: 1;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.hero__check-item span {
  font-weight: 500;
  font-size: clamp(0.8rem, 0.5rem + 0.6vw, 1.125rem);
  line-height: 1.4;
  color: var(--color-white);
  white-space: nowrap;
}

.hero__media {
  position: relative;
  z-index: 2;
  width: min(100%, 1184px);
  margin-inline: auto;
  padding-block-end: 3vi;
}

.hero__screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: min(1.2vi, 19px) solid rgba(255, 255, 255, 0.2);
}

.hero__cta {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 20px;
  padding-block-end: 6vi;
}

.hero__cta-heading {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.8rem + 2vw, 2rem);
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
  max-inline-size: 520px;
}


.hero__cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__cta-payments {
  height: 34px;
  width: auto;
}

.hero__cta-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero__cta-guarantee {
  width: 56px;
  aspect-ratio: 1;
}

.hero__cta-guarantee-text {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-white);
}

.hero__cta-guarantee-number {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
}

.hero__cta-guarantee-right {
  display: flex;
  flex-direction: column;
}

.hero__cta-guarantee-label {
  font-family: var(--font-accent);
  font-size: 11px;
  line-height: 1.2;
}

.hero__cta-guarantee-title {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

.hero__cta-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__cta-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
  color: var(--color-white);
}

.hero__cta-platform img {
  width: 20px;
  height: auto;
}

.hero__cta-platform-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

.hero__cta-platform-label {
  font-family: var(--font-accent);
  font-size: 10px;
}

.hero__cta-platform-name {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 12px;
}
