/* =========================
   HERO
========================= */

.wrapper {
  height: 100vh;
  position: relative;
  z-index: 2;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 120px clamp(32px, 7vw, 112px);
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.left h1 {
  max-width: 680px;
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;

  margin-bottom: 22px;
}

.left h1 span {
  color: transparent;
  background: linear-gradient(110deg, #ffffff, var(--accent-2) 48%, var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
}

.subtext {
  max-width: 520px;

  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 26px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;

  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);

  font-size: 13px;
  font-weight: 600;
}

.hero-points strong {
  color: var(--accent-3);
  font-size: 11px;
  letter-spacing: 0.7px;
}
