.hero {
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #050510 0%, #0a1628 100%);
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    min-height: 500px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .hero::before {
    display: block;
  }
}

.hero-streak {
  position: absolute;
  top: -30%;
  right: 15%;
  width: 200px;
  height: 500px;
  background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.05), transparent);
  transform: rotate(-30deg);
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .hero-streak {
    display: block;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 3rem 2rem;
  }
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-badge {
    display: flex;
  }
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-logo {
    margin-bottom: 1.5rem;
  }
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.hero-title span {
  color: var(--accent);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-features {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
}

@media (min-width: 768px) {
  .hero-feature {
    gap: 1rem;
    padding: 0.875rem 1rem;
  }
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-feature-icon {
    width: 40px;
    height: 40px;
  }
}

.hero-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hero-feature-text {
  font-size: 14px;
  font-weight: 600;
}

.hero-feature-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-cta {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.25rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

@media (min-width: 768px) {
  .hero-btn {
    height: 48px;
    padding: 0 1.5rem;
    font-size: 15px;
  }
}

.hero-btn:hover {
  background: var(--accent-hover);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
}
