/* Logo HIVE - hexagone vertical */

.logo-svg {
  display: inline-block;
  color: var(--text-strong);
}
.logo-svg .hex { fill: none; stroke: currentColor; stroke-width: 4; stroke-linejoin: round; }

/* Boot animation : tracé progressif de l'hexagone */
.boot-logo .logo-svg .hex {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawHex 1.2s ease forwards;
}
@keyframes drawHex { to { stroke-dashoffset: 0; } }
