﻿.home-hero {
  display: flex;
  min-height: calc(100vh - 52px);
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem;
}

.home-hero__column {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__column--intro {
  border-right: 1px solid var(--border);
  padding-right: 3rem;
}

.home-hero__column--features {
  padding-left: 3rem;
  max-width: 420px;
}

.home-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

.home-hero__accent {
  color: var(--accent);
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero__cta {
  font-size: 0.85rem;
}

.home-hero__cta.is-focused {
  box-shadow: 0 0 0 3px rgba(91, 91, 214, 0.4);
  border-radius: var(--radius);
}

.home-feature {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.home-feature:last-child {
  border-bottom: none;
}

.home-feature__badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.home-feature__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.home-feature__description {
  font-size: 0.85rem;
  color: var(--text-2);
}

.home-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-footer__label {
  font-size: 0.75rem;
  color: var(--text-3);
}

.home-footer__link {
  font-size: 0.8rem;
  color: var(--text-2);
}

.home-hero__column--intro,
.home-footer {
  background: transparent;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 2rem;
  }

  .home-hero__column--intro,
  .home-hero__column--features {
    padding: 0;
    border-right: none;
  }
}
