/* ============================================
   DESKTOP-ONLY styles (homepage)
   Every rule lives inside the min-width media
   query below — edits here can never affect the
   mobile view (see mobile.css for that).
   ============================================ */
@media (min-width: 769px) {
  .home-mobile {
    display: none;
  }

  /* ---- Hero Section ---- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
    text-align: center;
  }

  /* Hero content stacking (above absolute bg layers) */
  .hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Badge */
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--color-border);
    background: rgba(0, 229, 255, 0.06);
    color: var(--color-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
  }

  /* Heading */
  .hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: min(900px, 85vw);
    letter-spacing: -0.02em;
  }

  .hero__title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Subtitle */
  .hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 3rem;
    line-height: 1.7;
  }

  /* ---- Feature Cards ---- */
  .hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 780px;
    width: 100%;
    margin-bottom: 3rem;
  }

  .feature-card {
    background: rgba(13, 21, 41, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }

  .feature-card:hover {
    border-color: rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.08);
  }

  .feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
  }

  .feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .feature-card__text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
  }

  /* ---- CTA Button ---- */
  .hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(135deg,
        #0e7490 0%,
        #6d28d9 50%,
        #7e22ce 100%);
    box-shadow:
      0 0 20px rgba(0, 229, 255, 0.15),
      0 0 40px rgba(109, 40, 217, 0.1);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
  }

  .hero__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow:
      0 4px 24px rgba(0, 229, 255, 0.25),
      0 0 50px rgba(109, 40, 217, 0.2);
  }

  .hero__cta:active {
    transform: translateY(0);
    filter: brightness(1);
  }

  .hero__cta-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
  }

  .hero__secondary-cta {
    margin-top: 1.25rem;
  }

  .hero__secondary-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 9999px;
    background: transparent;
    color: var(--color-text-base);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
  }

  .hero__secondary-link:hover {
    border-color: rgba(0, 229, 255, 1);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.15);
  }
}
