/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/bg.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.42);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.65) 78%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

/* ── Logo ── */
.logo-wrap {
  width: min(420px, 74vw);
  margin-bottom: 20px;
  background: rgba(180, 210, 235, 0.18);
  border: 1px solid rgba(180, 215, 240, 0.35);
  border-radius: 16px;
  padding: 22px 36px;
  backdrop-filter: blur(10px);
  animation: fadeDown 1s ease both;
}

.logo-wrap img {
  width: 100%;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.05);
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4922a;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}

/* ── Tagline ── */
.tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5.8vw, 58px);
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fff;
  max-width: 740px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}

.tagline span {
  color: #d4922a;
}

/* ── Sub-tagline ── */
.sub-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2.3vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.7s ease forwards;
}

/* ── INC 500 Strip ── */
.inc-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,146,42,0.4);
  border-radius: 60px;
  padding: 14px 32px;
  margin-bottom: 56px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}

.inc-badge-img {
  height: 68px;
  width: auto;
  filter: brightness(1.05);
}

.inc-text .headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 0.08em;
  color: #d4922a;
  line-height: 1;
  text-align: left;
}

.inc-text .detail {
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
  text-align: left;
}

/* ── As Seen In Label ── */
.as-seen-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}

/* ── Ticker / Logo Carousel ── */
.ticker-wrap {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  padding: 8px 0;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.85), transparent);
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker.paused {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 90px;
  flex-shrink: 0;
}

.logo-item img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: invert(1) brightness(1.8);
  opacity: 0.75;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}

.logo-item img:hover {
  filter: invert(1) brightness(2.2);
  opacity: 1;
  transform: scale(1.08);
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  background: #d4922a;
  padding: 18px 60px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}

.cta-btn:hover {
  background: #e8a83c;
  transform: translateY(-2px);
}

.cta-sub {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards;
}

/* ── Animations ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .inc-strip {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 20px;
  }
  .inc-text .headline,
  .inc-text .detail {
    text-align: center;
  }
  .logo-item {
    padding: 0 24px;
    height: 70px;
  }
  .logo-item img {
    height: 44px;
    max-width: 120px;
  }
}
