.hero {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + 32px);
  padding-bottom: 40px;
  background: var(--bg);
  position: relative;
  overflow: visible;
}

/* Premium grain + dot-grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"),
    radial-gradient(circle, rgb(var(--ink-rgb) / 0.07) 1px, transparent 1px);
  background-size: 300px 300px, 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette to fade edges of texture */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-start;
  gap: 64px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 24px;
  display: inline-block;
  border-left: 5px solid var(--olive);
  padding-left: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 9vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title .line-break {
  display: block;
}

.hero-title .olive-accent {
  color: var(--olive);
}

.hero-title .light {
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta .btn.btn-sharp {
  border-radius: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  .hero-sub {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(var(--navbar-height) + 20px);
    padding-bottom: 32px;
  }

  .hero-container {
    padding: 0 var(--gutter);
  }

  .hero-eyebrow {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.4rem);
    line-height: 0.92;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Olive shimmer ── */
@keyframes olive-shimmer {
  0%   { filter: brightness(1) saturate(1); }
  50%  { filter: brightness(1.4) saturate(1.25); }
  100% { filter: brightness(1) saturate(1); }
}

.hero-title .olive-accent {
  animation: olive-shimmer 1.4s ease 2s 1;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: scroll-ind-in 0.6s ease 2.6s forwards;
  pointer-events: none;
}

.hero-scroll-indicator.hidden {
  opacity: 0 !important;
  transition: opacity 0.4s ease;
}

.hero-scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(var(--ink-rgb) / 0.28);
}

.hero-scroll-line {
  width: 52px;
  height: 1px;
  background: rgb(var(--ink-rgb) / 0.25);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--olive);
  animation: scroll-line-sweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) 3.2s infinite;
}

@keyframes scroll-ind-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes scroll-line-sweep {
  0%   { left: -100%; }
  45%  { left: 100%; }
  100% { left: 100%; }
}

@media (max-width: 600px) {
  .hero-scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(2.6rem, 15vw, 3.4rem);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }
}

/* ── Hero Visual Card ── */
.hero-visual {
  flex: 0 0 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  padding-top: 52px;
}

.hero-card {
  background: transparent;
  padding: 0 0 0 28px;
  width: 100%;
  border-left: 3px solid var(--olive);
}

.hero-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
  display: block;
}

.hero-card-stat {
  padding: 22px 0;
  border-top: 1px solid rgb(var(--ink-rgb) / 0.1);
}

.hero-card-stat:last-of-type {
  border-bottom: 1px solid rgb(var(--ink-rgb) / 0.1);
}

.hero-card-num {
  display: block;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-card-num span {
  color: var(--olive);
  font-size: 65%;
  font-weight: 800;
}

.hero-card-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.7;
}

.hero-card-footer {
  margin-top: 20px;
  font-size: 0.62rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  line-height: 1.6;
  opacity: 0.45;
}

@media (max-width: 1024px) {
  .hero-visual {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }

  .hero-container {
    gap: 0;
  }
}
