@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

.landing {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Inter', -apple-system, sans-serif;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.landing--day .hero-bg { background-image: url('assets/hero-variants/day-hero.jpg'); }
.landing--night .hero-bg { background-image: url('assets/hero-variants/night-hero.jpg'); }

/* Edge vignette only — image stays the hero, not buried under an overlay (Real Depth Rule) */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,26,43,0.55) 0%, rgba(6,26,43,0) 22%, rgba(6,26,43,0) 70%, rgba(6,26,43,0.65) 100%);
}

.landing--day .hero-vignette {
  background: linear-gradient(180deg, rgba(10,30,50,0.35) 0%, rgba(10,30,50,0) 25%, rgba(10,30,50,0) 68%, rgba(10,30,50,0.45) 100%);
}

/* Local scrim behind the text block only — keeps the photo readable everywhere else (Real Depth Rule) */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-scrim::before {
  content: '';
  width: min(900px, 92vw);
  height: 64%;
  background: radial-gradient(ellipse at center, rgba(6,26,43,0.58) 0%, rgba(6,26,43,0.4) 45%, rgba(6,26,43,0) 75%);
}

.landing--day .hero-scrim::before {
  background: radial-gradient(ellipse at center, rgba(6,26,43,0.5) 0%, rgba(6,26,43,0.32) 45%, rgba(6,26,43,0) 75%);
}

.landing-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  animation: fadeDown 1.1s ease both;
}

.wordmark {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.landing-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.eyebrow {
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 1s 0.15s ease both;
}

h1 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 26px;
  animation: fadeUp 1.1s 0.3s ease both;
}

h1 strong { font-weight: 600; }

.tagline {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 46px;
  animation: fadeUp 1.1s 0.45s ease both;
}

.cta {
  display: inline-block;
  border: 1px solid #F2A900;
  color: #F2A900;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 42px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
  animation: fadeUp 1.1s 0.6s ease both;
}

.cta:hover {
  background: #F2A900;
  color: #061A2B;
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeUp 1.2s 0.9s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-nav, .eyebrow, h1, .tagline, .cta, .scroll-cue { animation: none; }
}
