/* Athom Central — estilos específicos de esta página */

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--space-5);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-block: var(--space-2);
  background: linear-gradient(120deg, var(--text-0) 30%, var(--athom-a) 65%, var(--athom-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--text-1);
  margin-bottom: var(--space-3);
}

.hero__ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------------- Video de fondo del hero ---------------- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-0) 55%, transparent) 0%, transparent 35%, var(--bg-0) 96%),
    linear-gradient(90deg, var(--bg-0) 0%, transparent 25%, transparent 75%, var(--bg-0) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* ---------------- Reveal on scroll ---------------- */
.glow-card,
.brand-banner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.glow-card.is-visible,
.brand-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- About ---------------- */
.about h2 { max-width: 640px; }
