.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero__split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: calc(100vh - 80px); max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg); gap: var(--space-xl); }
.hero__content { padding: var(--space-xl) 0; }
.hero__title { font-size: var(--text-5xl); color: var(--white); margin-bottom: var(--space-md); line-height: 1.08; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: var(--text-md); color: var(--white-dim); max-width: 42ch; margin-bottom: var(--space-xl); line-height: 1.7; }
.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero__stat { display: inline-flex; align-items: baseline; gap: var(--space-xs); padding: var(--space-sm) var(--space-md); border: 1px solid var(--black-border); border-radius: var(--radius-md); background: var(--black-card); }
.hero__stat-number { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: var(--text-sm); color: var(--white-dim); }
.hero__image-wrap { position: relative; height: 70vh; min-height: 500px; overflow: hidden; }
.hero__frame { position: absolute; top: -16px; right: -16px; width: calc(100% - 32px); height: calc(100% - 32px); border: 1px solid var(--gold); border-radius: var(--radius-lg); opacity: 0.2; z-index: 0; pointer-events: none; }
.hero__scroll { position: absolute; bottom: var(--space-lg); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); opacity: 0.4; }
.hero__scroll-line { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }
.hero__scroll-text { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); }

.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.about-teaser__image { position: relative; }
.about-teaser__image-accent { position: absolute; bottom: -16px; left: -16px; width: 60%; height: 60%; border: 1px solid var(--gold); border-radius: var(--radius-lg); opacity: 0.15; z-index: 0; pointer-events: none; }

.stats-section { background: var(--black); border-top: 1px solid var(--black-border); border-bottom: 1px solid var(--black-border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stats-grid--2 { grid-template-columns: repeat(2, 1fr); }
.stat { padding: var(--space-lg) var(--space-sm); border-right: 1px solid var(--black-border); }
.stat:last-child { border-right: none; }


@media (max-width: 900px) { .about-teaser__grid { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat { border-right: none; border-bottom: 1px solid var(--black-border); } .stat:nth-child(odd) { border-right: 1px solid var(--black-border); } .stat:last-child { border-bottom: none; } .cta-banner__inner { flex-direction: column; text-align: center; } }
@media (max-width: 768px) { .about-teaser__image--desktop { display: none; } .about-teaser__grid { grid-template-columns: 1fr; } }

@media (min-width: 769px) and (max-width: 900px) { .hero__split { grid-template-columns: 1fr; } .hero__image-wrap { height: 50vw; min-height: 280px; } }
.scroll-hint { display: none; }

@media (max-width: 768px) {
  .hero { position: relative; min-height: 100svh; }
  .hero__split { position: relative; display: block; min-height: 100svh; padding: 0; }
  .hero__image-wrap { position: absolute; inset: 0; height: 100%; min-height: unset; z-index: 0; border-radius: 0; }
  .hero__frame { display: none; }
  .hero__split::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.82) 55%, var(--black) 100%); z-index: 1; pointer-events: none; }
  .hero__content { position: relative; z-index: 2; padding: calc(64px + var(--space-lg)) var(--space-md) var(--space-xl); }

  /* Horizontal scroll for card sections */
  .cards-scroll-wrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-inline: calc(-1 * var(--space-md)); padding-inline: var(--space-md); padding-bottom: var(--space-sm); }
  .cards-scroll-wrap::-webkit-scrollbar { display: none; }
  .cards-scroll-track { display: flex !important; gap: var(--space-sm); width: max-content; }
  .cards-scroll-track .card { width: 72vw; max-width: 300px; flex-shrink: 0; }

  /* Scroll indicator */
  .scroll-hint { display: flex; align-items: center; gap: var(--space-xs); justify-content: center; margin-top: var(--space-sm); color: var(--white-dim); font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
  .scroll-hint__arrow { display: inline-block; animation: hintSlide 1.6s ease-in-out infinite; }
  @keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; padding: var(--space-md) var(--space-xs); }
  .stat:nth-child(odd) { border-right: 1px solid var(--black-border); }
  .stat__number { font-size: var(--text-3xl); }
  .cta-banner { padding: var(--space-lg) 0; }
  .cta-banner__inner { gap: var(--space-md); }
  .cta-banner__title { font-size: var(--text-xl); }
  .cta-banner__sub { font-size: var(--text-sm); }
  .hero__stat { padding: var(--space-xs) var(--space-sm); }
  .hero__stat-number { font-size: var(--text-2xl); }
}
