/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 500vh;
  z-index: 1;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo wrapper */
#logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  z-index: 3;
  will-change: transform, opacity;
}

#hero-logo-img {
  width: 280px;
  height: auto;
  display: block;
}

/* Glow lives outside the scaled/composited layer so SVG stays crisp */
#hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(255, 207, 82, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  will-change: opacity;
}

/* Dark backdrop — fades in before tagline so text is on clean bg */
#hero-backdrop {
  position: absolute;
  inset: 0;
  background: #08070A;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

/* Hero tagline */
#hero-tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 7;
  width: 90%;
  max-width: 900px;
}

#hero-tagline h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 30%, var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

#hero-tagline p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--muted);
  font-family: var(--font-alt);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 32px var(--orange-glow);
  transition: transform 0.25s, box-shadow 0.25s;
  font-family: var(--font-main);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--orange-glow);
}

.btn-outline {
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s;
  font-family: var(--font-main);
}

.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(255, 207, 82, 0.1);
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s;
}

.scroll-ind span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-wheel {
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 13px;
  position: relative;
}

.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBob 1.8s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { top: 6px;  opacity: 1; }
  50%       { top: 22px; opacity: 0.3; }
}
