/* ===========================================================
   VORS · Why VORS
   =========================================================== */
.vors-why {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  background-color: var(--bg);
  transition: border-color var(--duration-base) var(--ease),
              transform var(--duration-base) var(--ease),
              box-shadow var(--duration-base) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) { .vors-why { padding: 1.5rem; } }

.vors-why:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.vors-why--invert {
  background-color: var(--bg-invert);
  border-color: var(--bg-invert);
  color: #fff;
  min-height: 240px;
}
.vors-why--invert:hover { border-color: var(--brand); }

.vors-why__icon {
  width: 36px;
  height: 36px;
  color: var(--brand);
  flex-shrink: 0;
}
.vors-why--invert .vors-why__icon {
  width: 48px;
  height: 48px;
}

.vors-why__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.vors-why--invert .vors-why__num {
  font-size: 1rem;
  color: var(--brand-vivid);
}

.vors-why__title {
  font-family: 'Space Grotesk', 'Inter Tight', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.vors-why--invert .vors-why__title {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.15;
}

.vors-why__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.vors-why--invert .vors-why__text {
  color: rgba(255, 255, 255, 0.7);
}
