/* Mobile-first overrides: hero and small-screen layout tweaks */

/* Apply only on narrow viewports — keeps desktop styles untouched */
@media (max-width: 700px) {
  .hero {
    padding: 40px 16px;
  }

  .hero-inner {
    display: block;
    max-width: 820px;
    margin: 0 auto;
  }

  .hero-left {
    width: 100%;
    box-sizing: border-box;
  }

  .eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.12;
    margin: 6px 0 12px;
  }

  .lead {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero-actions .btn.small {
    padding: 8px 10px;
  }

  .socials {
    margin-top: 8px;
    display: flex;
    gap: 10px;
  }

  .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    text-decoration: none;
  }

  .social i {
    font-size: 18px;
  }

  /* Mobile navigation: opaque background to avoid translucency */
  .nav {
    margin-top: 10px;
    background-color: var(--accent);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-list li a{
    color: black;
  }
}

/* Extra-small screens */
@media (max-width: 420px) {
  .hero-title {
    font-size: 22px;
  }

  .lead {
    font-size: 14px;
  }

  .hero {
    padding: 32px 12px;
  }

  .social {
    width: 36px;
    height: 36px;
  }
}
