/* WiseTrack Technologies — Noir Executive shared styles
   Consolidated from per-page <style> blocks. */

body {
  min-height: max(884px, 100dvh);
  background-color: #0d0d0e;
  color: #e3e2e7;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

/* ─── Glass surfaces ─────────────────────────────────────── */
.glass-card {
  background: rgba(26, 26, 27, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 192, 195, 0.1);
}

.glass-panel {
  background: rgba(26, 26, 27, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(192, 192, 195, 0.1);
}

/* ─── Milled / grain textures ────────────────────────────── */
.milled-surface {
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 4px 4px;
}

.milled-texture {
  background-image: radial-gradient(rgba(192, 192, 195, 0.05) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  opacity: 0.5;
}

.grain-overlay {
  background-image: radial-gradient(rgba(192, 192, 195, 0.04) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
}

/* ─── Silver glows & gradients ───────────────────────────── */
.silver-glow {
  box-shadow: 0 0 40px -10px rgba(192, 192, 195, 0.15);
}

.silver-bevel {
  background: linear-gradient(135deg, rgba(192, 192, 195, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(192, 192, 195, 0.05) 100%);
}

.silver-gradient-border,
.silver-border-gradient {
  border: 1px solid transparent;
  background: linear-gradient(#121317, #121317) padding-box,
              linear-gradient(135deg, rgba(192, 192, 195, 0.3), transparent) border-box;
}

.text-gradient-silver {
  background: linear-gradient(135deg, #dcdcdf 0%, #8f9194 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.beveled-edge {
  border-image: linear-gradient(to bottom right, rgba(192, 192, 195, 0.3), transparent) 1;
}

/* ─── Hero / timeline accents ────────────────────────────── */
.hero-gradient {
  background: linear-gradient(180deg, rgba(13, 13, 14, 0) 0%, rgba(13, 13, 14, 1) 100%);
}

.vertical-line {
  background: linear-gradient(to bottom, transparent, rgba(192, 192, 195, 0.2) 20%, rgba(192, 192, 195, 0.2) 80%, transparent);
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 30s linear infinite;
}
