/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-bottom: 32px;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 6.5vw, 100px);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-headline .word-wrap {
  margin-right: 0.12em;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--grey);
  margin-bottom: 48px;
  opacity: 0;
  will-change: opacity;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  opacity: 0;
  will-change: opacity;
}

/* Hero graphic */
.hero-graphic {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity;
}

.hero-logo-graphic {
  width: 100%;
  max-width: 480px;
  height: auto;
  opacity: 1;
}

.hero-graphic .graphic-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 11px;
  color: #444;
  letter-spacing: 0.15em;
  transition: opacity 0.4s;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Proof Strip */
.proof-strip {
  padding: 32px 0;
  background: transparent;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  opacity: 0;
  will-change: opacity, transform;
}

.proof-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1;
}

.proof-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
  margin-top: 8px;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
