/* Hero section */

.hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #0F1923 0%, #152233 100%);
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.logo-icon {
  font-size: 36px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h2 {
  margin-bottom: 20px;
}

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

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(62, 219, 190, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(62, 219, 190, 0.45);
}

.cta-hint {
  font-size: 13px;
  color: var(--text-2);
}
