/* Homepage hero styles (kept separate from shared brand-kit.css) */

.home {
  flex: 1;
  overflow: auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-logo {
  width: 320px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

.home-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.home-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 20px;
}

.home-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.home-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
}

.home-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.home-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.13s;
}

.home-btn-secondary:hover { color: var(--text); }

.home-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 64px 0 32px;
}

.home-footer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

.home-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.13s;
}

.home-footer a:hover { color: var(--text); }

