﻿.home-hero {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero-logo {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(105, 210, 255, 0.22), rgba(244, 181, 76, 0.18));
  border: 1px solid var(--border-strong);
  color: var(--text-strong);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.hero-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

.hero-sub {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #4db6e4);
  color: #04111a;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.14s ease, transform 0.14s ease;
  letter-spacing: 0.01em;
}

.hero-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.eve-sso-link {
  display: inline-block;
  transition: opacity 0.14s ease, transform 0.14s ease;
}
.eve-sso-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.eve-sso-btn {
  display: block;
  height: auto;
  max-height: 2.6rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 860px;
  width: 100%;
}

.feature-card {
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(14, 31, 50, 0.66), rgba(9, 20, 33, 0.88));
  text-align: left;
  backdrop-filter: blur(12px);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.feature-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 0.3rem;
}

.feature-desc {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}
