/* ====================================================================
   HOMEPAGE STYLES
   Purpose: define homepage-specific left-column spacing, copy layout,
   and feature-grid presentation inside the shared public shell.
   ==================================================================== */

/* 1. Homepage workspace alignment */
.home-workspace {
  justify-content: flex-start;
}

.home-stage {
  width: min(100%, 560px);
}

/* 2. Homepage copy stack */
.home-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-kicker {
  margin: 0;
  color: var(--site-color-text-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-title {
  margin: 0;
  color: var(--site-color-text);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.04;
}

.home-description {
  margin: 0;
  color: var(--site-color-text-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

/* 3. Homepage feature-grid adjustments */
.home-feature-grid {
  margin-top: 10px;
}

.home-feature-grid .feature-card {
  background: var(--site-surface-home-feature-card);
}

/* 4. Responsive homepage adjustments */
@media (max-width: 980px) {
  .home-workspace {
    justify-content: center;
  }

  .home-stage {
    width: min(100%, 620px);
  }

  .home-description {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .home-copy {
    gap: 16px;
  }

  .home-title {
    font-size: 34px;
  }

  .home-description {
    font-size: 16px;
  }
}
