/* ============================================
   NEXTPULSE PRO — home.css
   ============================================ */

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,28,35,0.35) 0%,
    rgba(11,28,35,0.55) 60%,
    var(--bg) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__eyebrow {
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}
.hero__title .line-cyan { color: var(--cyan); }
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--silver);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.75s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero__scroll-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
  opacity: 0.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── TICKER ─────────────────────────────── */
.ticker {
  background: var(--cyan);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.ticker__track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.ticker__item::after { content: '◆'; font-size: 0.5rem; opacity: 0.6; }

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

/* ── GROUP SHOT ─────────────────────────── */
.group-shot {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.group-shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.group-shot__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: linear-gradient(
    to right,
    rgba(11,28,35,0.85) 0%,
    rgba(11,28,35,0.4) 60%,
    transparent 100%
  );
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

/* ── USP STRIP ──────────────────────────── */
.usps {
  background: var(--bg-surface);
  border-top: var(--border);
  border-bottom: var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.usp-item {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  border-right: var(--border);
  transition: background var(--t-mid);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--bg-card); }
.usp-item__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--cyan);
}
.usp-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.usp-item__text {
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.75;
  max-width: 300px;
}

/* ── BAG SPOTLIGHT ──────────────────────── */
.bag-spotlight { background: var(--bg); }
.bag-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  border-radius: 3px;
  overflow: hidden;
  min-height: 580px;
}
.bag-spotlight__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}
.bag-spotlight__media video,
.bag-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.bag-spotlight:hover .bag-spotlight__media video,
.bag-spotlight:hover .bag-spotlight__media img { transform: scale(1.03); }

.bag-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-card);
}
.bag-spotlight__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 1.5rem;
}
.bag-spotlight__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.75rem 0 2.5rem;
}
.bag-spotlight__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--silver);
  font-weight: 300;
}
.bag-spotlight__features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ── SOCIAL PROOF ───────────────────────── */
.social-proof { background: var(--bg); text-align: center; }
.quote-block { max-width: 780px; margin: 0 auto; }
.quote-block__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.quote-block__author { font-size: 0.85rem; color: var(--silver); letter-spacing: 0.06em; }
.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.5rem; color: var(--col-power); font-size: 1.1rem; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .bag-spotlight__inner { grid-template-columns: 1fr; min-height: auto; }
  .bag-spotlight__media { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .usp-grid          { grid-template-columns: 1fr; }
  .usp-item          { border-right: none; border-bottom: var(--border); }
  .usp-item:last-child { border-bottom: none; }
  .hero__actions     { flex-direction: column; align-items: flex-start; }
  .grid-4            { grid-template-columns: repeat(2, 1fr); }
  .group-shot__overlay { background: rgba(11,28,35,0.75); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
