/**
 * Hero Section - Full screen, outcome-focused
 */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

.hero__content {
  max-width: 700px;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--purple);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__accent {
  color: var(--purple);
  position: relative;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

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

.hero__svg {
  position: absolute;
  right: 5%;
  bottom: 10%;
  height: 42vh;
  z-index: 1;
  opacity: 0.7;
}

/* Buttons */
.btn {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--purple);
  color: #fff;
}

.btn--primary:hover {
  background: #7a3df5;
  box-shadow: 0 6px 24px var(--purple-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn--outline:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-left: 0.5rem;
}

.btn--ghost:hover {
  color: var(--purple);
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 5% 3rem;
    flex-direction: column;
    justify-content: center;
  }
  .hero__svg {
    position: relative;
    right: auto;
    bottom: auto;
    height: 30vh;
    margin-top: 2rem;
  }
  .hero__ctas { flex-direction: column; }
}
