/* Hero for vision */
.vision-hero {
  background: linear-gradient(135deg, rgba(91,141,239,0.15), rgba(139,92,246,0.15));
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.vision-hero::after {
  content: ""; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,141,239,0.2), transparent 70%);
  pointer-events: none;
}
.vision-hero h1 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.vision-hero p { font-size: 14px; color: var(--text-1); max-width: 720px; line-height: 1.6; }
.vision-hero .tagline { font-size: 12px; color: var(--brand-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

