.home-hero {
  text-align: center;
  padding: var(--space-8) 0 var(--space-7);
}

.home-hero__title {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: var(--font-weight-regular);
  line-height: 94px;
  color: #e2e8f0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: var(--space-4);
}

.home-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: var(--font-weight-regular);
  line-height: 31px;
  color: #e2e8f0;
}

.home-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.home-card {
  width: 427px;
  min-height: 339px;
  background: #0c1020;
  border-radius: 8px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.home-card__icon {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: 6px solid #fafafa;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-card__title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: var(--font-weight-regular);
  line-height: 36px;
  color: #e2e8f0;
  text-align: center;
}

.home-card__subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  line-height: 26px;
  color: #e2e8f0;
  text-align: center;
}

.home-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--space-4);
}

.btn--surface {
  background: #111526;
}

@media (max-width: 640px) {
  .home-hero {
    padding: var(--space-5) 0 var(--space-4);
  }

  .home-hero__title {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
  }

  .home-hero__subtitle {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .home-cards {
    flex-direction: column;
    gap: var(--space-4);
  }

  .home-card {
    width: 100%;
    min-height: unset;
  }

  .home-card__actions {
    width: 100%;
    flex-direction: column;
  }

  .home-card__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}
