/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 64px;
  overflow: hidden;
  background: var(--white);
}

.hero .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
  opacity: 0.12;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gray-100) 0%, transparent 70%);
  z-index: -1;
}

.hero-content {
  max-width: 980px;
  margin-bottom: 0;
  text-align: center;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 36px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  position: relative;
}

.metric + .metric::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

.metric-value {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
