/* HERO — full-screen photo, left-aligned words, three buttons */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #f8f4ec;
  background: #0e1116;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  z-index: 0;
}

.hero-media[data-type='banner']::after {
  opacity: 0.45;
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 8rem 6vw 7rem;
}

.hero-banner-card {
  max-width: 34rem;
  padding: 1.5rem 1.6rem;
  background: oklch(0.1 0.02 250 / 0.72);
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 18px;
  color: #f8f4ec;
}

.hero-banner-card h2 {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.12 0.02 250 / 0.35) 0%, oklch(0.1 0.02 250 / 0.55) 42%, oklch(0.08 0.02 250 / 0.82) 100%),
    linear-gradient(90deg, oklch(0.08 0.02 250 / 0.55) 0%, oklch(0.08 0.02 250 / 0.1) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 8.5rem 0 6.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: oklch(0 0 0 / 0.35);
  border: 1px solid oklch(1 0 0 / 0.16);
  color: #f8f4ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}

.hero h1 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-lead {
  max-width: 42ch;
  margin-top: var(--space-6);
  color: oklch(0.93 0.02 90 / 0.82);
  font-size: var(--text-base);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 10rem));
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.12);
  max-width: 36rem;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
}

.hero-stats span {
  display: block;
  margin-top: var(--space-1);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 72px;
  color: var(--color-bg);
}

@media (min-width: 1024px) {
  .hero-content {
    padding-bottom: 7.5rem;
  }
}
