/* Hero section: two-column layout with text + illustration.
   Mobile: single column (text only, illustration hidden for faster LCP).
   Desktop: text left, illustration right. */

.hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

/* --- Text column --- */
.hero__text {
  max-width: 560px;
}

.hero__headline {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.hero__subheadline {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* --- Illustration column --- */
.hero__illustration {
  display: none;
  max-width: 480px;
  width: 100%;
}

.hero__illustration svg {
  width: 100%;
  height: auto;
}

/* --- Responsive --- */
@media (min-width: 640px) {
  .hero__headline {
    font-size: var(--font-size-5xl);
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-20);
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero__illustration {
    display: block;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .hero__headline {
    font-size: var(--font-size-5xl);
    line-height: 1.1;
  }

  .hero__illustration {
    max-width: 520px;
  }
}
