.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 9rem;
  overflow: hidden;
}

/* ── Left panel ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--section-pad-x) 5rem 3.5rem;
  position: relative;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}

.hero-headline .line-1 { display: block; color: var(--white); }
.hero-headline .line-2 { display: block; color: var(--blue); }
.hero-headline .line-3 { display: block; color: var(--coral); }
.hero-headline .line-4 { display: block; color: var(--cyan); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-medium);
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* ── Stats row ── */
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── Right metric tiles ── */
.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: var(--border-subtle);
}

.metric-tile {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-subtle);
}

.metric-tile:last-child {
  border-bottom: none;
}

.metric-tile.blue  { background: var(--blue); }
.metric-tile.coral { background: var(--coral); }

.metric-big {
  font-family: var(--font-display);
  font-size: clamp(5rem, 7vw, 8rem);
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
}

.metric-desc {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.metric-tile .bg-num {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
