/* -----------------------------------------------------------------
   Home-style pages: index.html (Coming Soon) and 404.html.
   Loaded after base.css.
------------------------------------------------------------------*/

.page{ justify-content: space-between; }

.hero{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.hero-inner{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn .8s ease-out .3s both;
}

.overline{
  margin: 0 0 32px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.headline{
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
}
.headline .light,
.headline .bold{ display: inline-block; white-space: nowrap; }
.headline .light{ font-weight: 300; }
.headline .bold{ font-weight: 700; }

.subline{
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,.8);
}

.cta{
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.cta:focus-visible{
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.social-links{
  display: flex;
  gap: 20px;
}
.social-links a{
  display: inline-flex;
  color: rgba(255,255,255,.35);
  transition: color .2s ease;
}
.social-links a:hover{ color: rgba(255,255,255,.8); }
.social-links svg{
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 768px){
  .hero{ padding: 32px 24px; }

  .cta{
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 32px;
    min-height: 48px;
  }

  .social-links{ gap: 24px; }
  .social-links svg{ width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce){
  .hero-inner{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
