/* ===== Hero universe SVG ===== */
.vn-hero-universe {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #FCFAF6 0%, #F6F3EC 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #EAE5DC;
}
.vn-universe-svg { width: 100%; height: 100%; display: block; }
.vn-universe-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 10px;
  color: #7A746A;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vn-universe-orbits ellipse { animation: vnSpin 60s linear infinite; transform-origin: 360px 270px; }
.vn-universe-orbits ellipse:nth-child(2) { animation-duration: 90s; animation-direction: reverse; }
.vn-universe-orbits ellipse:nth-child(3) { animation-duration: 120s; }
@keyframes vnSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.vn-universe-dots circle { animation: vnPulse 3s ease-in-out infinite; }
.vn-universe-dots circle:nth-child(2) { animation-delay: 0.4s; }
.vn-universe-dots circle:nth-child(3) { animation-delay: 0.8s; }
.vn-universe-dots circle:nth-child(4) { animation-delay: 1.2s; }
.vn-universe-dots circle:nth-child(5) { animation-delay: 1.6s; }
@keyframes vnPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.6); }
}
.vn-uni-pill { transition: transform 0.3s ease; }
.vn-uni-pill:hover { transform: translateY(-3px); }

/* ===== Tonnino growth chart ===== */
.vn-tonnino-chart {
  background: #fff;
  border: 1px solid #EAE5DC;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 12px 40px -16px rgba(31,27,22,0.12);
}
.vn-tonnino-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EFEAE0;
}
.vn-tonnino-chart-eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #7A746A;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vn-tonnino-chart-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1F1B16;
  letter-spacing: -0.02em;
}
.vn-tonnino-chart-mult {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #D96626;
  line-height: 1;
  letter-spacing: -0.04em;
}
.vn-tonnino-chart-mult small {
  font-size: 28px;
  font-weight: 500;
  margin-left: 2px;
}
.vn-tonnino-svg {
  width: 100%;
  height: auto;
  display: block;
}
.vn-tonnino-chart-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #EFEAE0;
  font-size: 11px;
  color: #7A746A;
  letter-spacing: 1px;
}

/* Animated reveal of the chart curve */
.vn-tonnino-reveal {
  clip-path: inset(0 100% 0 0);
}
.vn-tonnino-chart.vn-is-visible .vn-tonnino-reveal {
  animation: vnRevealLine 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes vnRevealLine {
  to { clip-path: inset(0 0 0 0); }
}
.vn-tonnino-points circle { opacity: 0; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle {
  animation: vnPopIn 0.4s ease-out forwards;
}
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(1) { animation-delay: 0.2s; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(2) { animation-delay: 0.7s; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(3) { animation-delay: 1.2s; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(4) { animation-delay: 1.6s; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(5) { animation-delay: 2.0s; }
.vn-tonnino-chart.vn-is-visible .vn-tonnino-points circle:nth-child(6) { animation-delay: 2.4s; }
@keyframes vnPopIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
.vn-tonnino-points circle { transform-origin: center; transform-box: fill-box; }

@media (max-width: 720px) {
  .vn-tonnino-chart { padding: 20px; }
  .vn-tonnino-chart-mult { font-size: 40px; }
  .vn-tonnino-chart-title { font-size: 16px; }
}
