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

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

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

  /* Heading — stacked one word per line */
  .hero__title {
    font-size: clamp(3rem, 13vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .hero__title-gradient {
    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: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
    line-height: 1.6;
  }

  /* ---- CTA ---- */
  .hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.1rem 2rem;
    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.1rem;
    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:active {
    transform: translateY(1px);
    filter: brightness(0.95);
  }

  /* ---- Feature rows (icon tile + title/description) ---- */
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.75rem;
    width: 100%;
  }

  .feature-row {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-align: left;
  }

  .feature-row__tile {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(109, 40, 217, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.28);
    color: #a78bfa;
  }

  .feature-row__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
  }

  .feature-row__desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-muted);
  }
}
