.hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-xl) var(--space-xl);
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--q-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--q-accent);
}

.hero-headline {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--q-text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

/* Product screenshot as hero image */
.hero-product {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--q-stroke);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset,
              0 -1px 0 0 rgba(212, 168, 83, 0.15);
}

.hero-product img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-xl);
  }

  .hero-product {
    margin: 0 calc(-1 * var(--space-md));
    border-radius: var(--radius-md);
  }
}
