/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  --ink: #0b1220;
  --ink-soft: #334155;
  --slate: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --white: #ffffff;
  --accent: #f97316;
  --brand: #0f3d8f;
  --brand-dark: #0a2d6b;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-heading {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

/* ========================================
   PUBLIC SHELL — light, clean background
   ======================================== */
.public-shell {
  background: #ffffff;
}

/* ========================================
   TOP CONTACT BAR
   ======================================== */
.top-bar {
  background: linear-gradient(135deg, #0b1220 0%, #162044 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.top-bar-link:hover {
  color: #fbbf24;
}

.top-bar-sep {
  display: none;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.top-bar-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6ee7b7;
  font-weight: 600;
  transition: color 0.2s;
}

.top-bar-wa:hover {
  color: #a7f3d0;
}

@media (min-width: 868px) {
  .top-bar-sep {
    display: block;
  }
}

@media (max-width: 867px) {
  .top-bar {
    font-size: 11px;
    padding: 5px 0;
  }
}

/* ========================================
   MAIN NAVBAR
   ======================================== */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.main-navbar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* ========================================
   NAV LINKS (Desktop)
   ======================================== */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--ink);
  background: #f1f5f9;
}

.nav-link.active {
  color: var(--brand);
  font-weight: 600;
}

.nav-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-dropdown-wrap:hover .nav-arrow {
  transform: rotate(180deg);
}

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  margin-left: 4px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

/* ========================================
   DROPDOWN SYSTEM — Hover with simple slide-down
   ======================================== */
.nav-dropdown-wrap {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  padding-top: 8px;
  /* gap bridge */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}

.nav-dropdown-wrap:hover>.dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Wide panel (services) */
.dropdown-wide {
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 480px;
}

.nav-dropdown-wrap:hover>.dropdown-wide {
  transform: translateX(-50%) translateY(0);
}

/* Compact panel (company) */
.dropdown-compact {
  right: 0;
  width: 280px;
}


/* The white card container — we'll style the panel itself */
.dropdown-wide,
.dropdown-compact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 50px -10px rgba(0, 0, 0, 0.15), 0 6px 16px -4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-bottom: 6px;
}

/* Dropdown header label */
.dropdown-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 16px 6px;
}

/* ========================================
   DROPDOWN ITEMS
   ======================================== */
.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin: 4px 8px;
  border-radius: var(--radius-lg);
  transition: background 0.15s, transform 0.1s;
  color: inherit;
}

.dd-item:hover {
  background: #f1f5f9;
}

/* Featured item */
.dd-item-featured {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  border: 1px solid #fed7aa;
  margin: 4px 8px;
}

.dd-item-featured:hover {
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
}

/* Icon circle */
.dd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Text group */
.dd-text {
  flex: 1;
  min-width: 0;
}

.dd-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}

.dd-item:hover .dd-name {
  color: var(--brand);
}

.dd-sub {
  display: block;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/* Arrow on featured items */
.dd-arrow {
  width: 14px;
  height: 14px;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}

.dd-item:hover .dd-arrow {
  color: var(--brand);
  transform: translateX(2px);
}

/* 2-column grid inside services dropdown */
.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px 4px 12px;
}

/* ========================================
   MOBILE HAMBURGER
   ======================================== */
.mobile-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s;
}

.mobile-burger:hover {
  border-color: #94a3b8;
}

.mobile-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-burger span:last-child {
  width: 60%;
}

/* Mobile dashboard icon button (modern rounded) */
.mobile-dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg,#06b6d4,#1e40af);
  box-shadow: 0 8px 20px rgba(14,116,144,0.18);
  color: #fff;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  margin-left: 8px;
}
.mobile-dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14,116,144,0.22);
}
.mobile-nav-header .mobile-dashboard-btn { margin-left: auto; margin-right: 8px; }

@media (min-width: 868px) {
  .mobile-dashboard-btn { display: none; }
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-overlay.is-visible {
  opacity: 1;
}

.mobile-nav-overlay.hidden {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.is-visible .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--slate);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-close:hover {
  background: #f1f5f9;
  color: var(--ink);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 20px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.m-nav-link:hover,
.m-nav-link:active {
  background: #f1f5f9;
}

.m-nav-link.active {
  color: var(--brand);
  font-weight: 600;
}

.m-nav-accordion {
  width: 100%;
  text-align: left;
}

.m-chevron {
  transition: transform 0.2s;
  color: var(--slate);
}

.m-nav-accordion[aria-expanded="true"] .m-chevron {
  transform: rotate(180deg);
}

.m-submenu {
  padding: 2px 0 4px 12px;
}

.m-sub-link {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: background 0.15s;
}

.m-sub-link:hover {
  background: #f1f5f9;
}

.mobile-cta {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-cta:hover {
  background: var(--brand);
}

.mobile-contact-footer {
  flex-shrink: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.mobile-contact-footer a {
  flex: 1 1 calc(50% - 5px);
  text-align: center;
  background: #f1f5f9;
  padding: 12px 10px;
  border-radius: var(--radius);
  font-weight: 700;
  color: #1e293b;
  transition: all 0.2s;
  border: 1px solid #e2e8f0;
}

.mobile-contact-footer a:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.wa-chip {
  flex: 1 1 100% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ecfdf5 !important;
  color: #059669 !important;
  border-color: #d1fae5 !important;
  font-weight: 700 !important;
}

.wa-chip:hover {
  background: #059669 !important;
  color: white !important;
}

/* ========================================
   RESPONSIVE GUARDS
   ======================================== */
@media (max-width: 867px) {
  .desktop-nav {
    display: none !important;
  }
}

@media (min-width: 868px) {
  .mobile-nav-overlay {
    display: none !important;
  }

  .mobile-burger {
    display: none !important;
  }
}

/* ========================================
   GLASS CARD / SURFACE UTILITIES
   ======================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.premium-glass-dark {
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
  background: linear-gradient(to right, rgba(11, 18, 32, 0.95), rgba(11, 18, 32, 0.8) 50%, rgba(11, 18, 32, 0.3));
}

.panel-shadow {
  background: #fff;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06), 0 2px 8px -2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.tech-card {
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 25px -5px rgba(15, 61, 143, 0.05);
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -5px rgba(15, 61, 143, 0.1);
}

.kpi-flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kpi-flex-grid>.tech-card,
.kpi-flex-grid>a.tech-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 180px;
  min-width: 180px;
  min-height: 82px;
  border-radius: 16px;
  border: 1px solid #d7e4f5;
  background:
    radial-gradient(circle at 100% -10%, rgba(125, 211, 252, 0.15), rgba(255, 255, 255, 0) 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.97));
  box-shadow: 0 15px 34px -26px rgba(2, 8, 23, 0.9);
  padding: 9px 11px !important;
}

.kpi-flex-grid>.tech-card p.text-2xl,
.kpi-flex-grid>a.tech-card p.text-2xl {
  margin-top: 2px !important;
  font-size: clamp(1.45rem, 2.7vw, 1.85rem);
  line-height: 1.1;
}

.kpi-flex-grid>.tech-card::before,
.kpi-flex-grid>a.tech-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, rgba(56, 189, 248, 0));
}

@media (max-width: 1023px) {
  .kpi-flex-grid {
    gap: 10px;
  }

  .kpi-flex-grid>.tech-card,
  .kpi-flex-grid>a.tech-card {
    flex-basis: calc(50% - 10px);
    min-width: 0;
    min-height: 78px;
    padding: 9px 10px !important;
  }
}

@media (max-width: 520px) {
  .kpi-flex-grid>.tech-card,
  .kpi-flex-grid>a.tech-card {
    flex-basis: 100%;
  }
}

.top-contact {
  background: linear-gradient(135deg, #0b1220, #162044);
}

.metric-gradient {
  background: linear-gradient(135deg, #0f3d8f, #0284c7 50%, #06b6d4);
  box-shadow: 0 15px 35px -5px rgba(2, 132, 199, 0.3);
}

.btn-glow {
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
  transition: all 0.3s;
}

.btn-glow:hover {
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
  transform: translateY(-2px);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.image-zoom-container {
  overflow: hidden;
}

.image-zoom {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-container:hover .image-zoom {
  transform: scale(1.08);
}

/* ========================================
   DASHBOARD
   ======================================== */
.dash-main-shell {
  background: radial-gradient(circle at 10% -10%, rgba(34, 211, 238, 0.15), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(15, 61, 143, 0.1), transparent 35%), #f7f9fc;
  min-width: 0;
}

.dash-side {
  box-shadow: 24px 0 42px rgba(2, 8, 23, 0.22);
}

.dash-group-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 6px;
}

.dash-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #dbeafe;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.dash-link:hover {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(51, 65, 85, 0.8);
  color: #f8fafc;
}

.dash-link.is-active {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(125deg, rgba(14, 116, 144, 0.7), rgba(30, 64, 175, 0.58));
  box-shadow: 0 8px 22px rgba(8, 47, 73, 0.3);
}

.dash-compact-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #d9e7f7;
  background:
    radial-gradient(circle at 100% -30%, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0) 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 15px 32px -24px rgba(2, 8, 23, 0.9);
}

.dash-compact-head::before {
  content: '';
  width: 100%;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #0f3d8f, #06b6d4);
  order: -1;
}

.dash-compact-kicker {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.dash-compact-title {
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  color: #0f172a;
}

.dash-compact-sub {
  margin: 7px 0 0;
  color: #475569;
  font-size: 0.97rem;
  max-width: 820px;
}

.dash-compact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.dash-compact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 9999px;
  padding: 8px 11px;
  border: 1px solid #cfe2f5;
  background: #ffffff;
  color: #0f172a;
}

.dash-compact-pill-label {
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.dash-compact-pill-value {
  font-size: 1rem;
  font-weight: 800;
}

.dash-period-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 7px 11px;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #0f766e;
  border: 1px solid #99f6e4;
  background: #f0fdfa;
  font-weight: 700;
}

.dash-topbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.dash-topbar::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.36), rgba(56, 189, 248, 0.08));
}

.dash-topbar-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.dash-page-title {
  text-wrap: balance;
}

.dash-content-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

.dash-content-area {
  min-width: 0;
}

.dash-content-wrap form.grid > * {
  min-width: 0;
}

.dash-content-wrap form .flex.gap-2 {
  flex-wrap: wrap;
}

.dash-content-wrap .overflow-auto {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dash-content-wrap .overflow-auto > table {
  min-width: 760px;
}

@media (max-width: 767px) {
  .dash-content-wrap .overflow-auto > table {
    min-width: 680px;
  }
}

.dash-topic {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
}

.dash-user-chip,
.dash-link-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #dbe7f5;
  padding: 7px 12px;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
}

.dash-link-chip {
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dash-link-chip:hover {
  border-color: #bae6fd;
  box-shadow: 0 10px 22px rgba(14, 116, 144, 0.14);
  transform: translateY(-1px);
}

.dash-external-icon {
  width: 14px;
  height: 14px;
  color: #64748b;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dash-link-chip:hover .dash-external-icon {
  color: #0284c7;
  transform: translate(1px, -1px);
}

.dash-menu-btn {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
  box-shadow: 0 12px 25px -16px rgba(15, 23, 42, 0.7), 0 4px 10px rgba(148, 163, 184, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dash-menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 16px 30px -16px rgba(8, 47, 73, 0.8), 0 8px 16px rgba(14, 116, 144, 0.2);
}

.dash-menu-icon {
  display: inline-grid;
  gap: 4px;
}

.dash-menu-icon i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #0f172a, #0369a1);
  border-radius: 9999px;
}

.dash-menu-icon i:nth-child(1) {
  width: 17px;
}

.dash-menu-icon i:nth-child(2) {
  width: 13px;
}

.dash-menu-icon i:nth-child(3) {
  width: 17px;
}

.inventory-dashboard {
  position: relative;
}

.inv-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(1.4rem, 2.2vw, 2.4rem);
  color: #fff;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at 90% 82%, rgba(34, 211, 238, 0.26), rgba(34, 211, 238, 0) 36%),
    linear-gradient(126deg, #0f2d7f 0%, #126ecf 54%, #06b6d4 100%);
  box-shadow: 0 25px 40px -20px rgba(8, 47, 73, 0.9);
}

.inv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

.inv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.inv-hero-kicker {
  margin: 0 0 8px;
  color: #dbeafe;
  font-size: clamp(0.7rem, 0.95vw, 0.82rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.inv-hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.inv-hero-copy {
  margin: 12px 0 0;
  max-width: 680px;
  color: rgba(241, 245, 249, 0.95);
  font-size: clamp(1rem, 1.4vw, 1.65rem);
  line-height: 1.42;
}

.inv-hero-pill {
  margin-top: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(186, 230, 253, 0.36);
  background: linear-gradient(140deg, rgba(125, 211, 252, 0.28), rgba(255, 255, 255, 0.16));
  backdrop-filter: blur(5px);
}

.inv-hero-pill-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dbeafe;
  font-size: clamp(0.68rem, 0.95vw, 0.8rem);
}

.inv-hero-pill-value {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.1;
}

.inv-metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.inv-metric {
  --metric-accent: #38bdf8;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 240px;
  position: relative;
  border-radius: 20px;
  padding: 16px 18px 14px;
  min-height: 128px;
  border: 1px solid rgba(220, 228, 241, 0.95);
  background:
    radial-gradient(circle at 110% -10%, rgba(125, 211, 252, 0.12), rgba(125, 211, 252, 0) 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  box-shadow: 0 14px 32px -24px rgba(15, 23, 42, 0.7);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  overflow: hidden;
}

.inv-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: linear-gradient(90deg, var(--metric-accent), rgba(255, 255, 255, 0));
}

.inv-metric::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.24) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.inv-metric:hover {
  transform: translateY(-3px);
  border-color: rgba(186, 230, 253, 0.9);
  box-shadow: 0 18px 38px -22px rgba(2, 132, 199, 0.45);
}

.inv-metric-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-size: clamp(0.66rem, 0.8vw, 0.76rem);
  font-weight: 700;
}

.inv-metric-value {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.inv-metric-meta {
  margin: 0;
  color: #64748b;
  font-size: clamp(0.73rem, 0.86vw, 0.86rem);
}

.inv-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.inv-metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--metric-accent);
  border: 1px solid #cfe8fc;
  background: #f2f9ff;
  box-shadow: 0 8px 18px -14px rgba(14, 165, 233, 0.85);
}

.inv-metric-icon svg {
  width: 17px;
  height: 17px;
}

.inv-metric-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.inv-metric-trend {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid #dbe4f1;
  border-radius: 9999px;
  padding: 4px 8px;
  white-space: nowrap;
  font-weight: 700;
}

.inv-metric-trend--positive {
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.inv-metric-trend--danger {
  color: #be123c;
  border-color: #fecdd3;
  background: #fff1f2;
}

.inv-metric-trend--warning {
  color: #b45309;
  border-color: #fed7aa;
  background: #fffbeb;
}

.inv-metric-trend--info {
  color: #0f766e;
  border-color: #99f6e4;
  background: #f0fdfa;
}

.inv-metric-progress {
  margin-top: 11px;
  height: 6px;
  border-radius: 9999px;
  overflow: hidden;
  background: #e9eff7;
  border: 1px solid #d8e1ee;
}

.inv-metric-progress span {
  display: block;
  height: 100%;
  width: 8%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--metric-accent), #67e8f9);
  transition: width 0.65s ease;
}

.inv-span-wide,
.inv-span-wide-desktop {
  flex-basis: calc(33.333% - 14px);
}

.inv-metric--positive {
  --metric-accent: #22c55e;
}

.inv-metric--danger {
  --metric-accent: #e11d48;
}

.inv-metric--warning {
  --metric-accent: #f59e0b;
}

.inv-metric--info {
  --metric-accent: #0284c7;
}

.inv-metric--neutral {
  --metric-accent: #94a3b8;
}

.inv-surface {
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  box-shadow: 0 18px 45px -32px rgba(2, 8, 23, 0.65);
}

.inv-section-head {
  margin-bottom: 12px;
}

.inv-section-subtitle {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: #64748b;
}

.inv-chart-wrap {
  position: relative;
}

.inv-chart-wrap--line {
  height: 290px;
}

.inv-chart-wrap--donut {
  height: 290px;
}

.inv-actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inv-action-chip {
  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #dbe4f2;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.inv-action-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 132, 199, 0.08), rgba(2, 132, 199, 0));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.inv-action-chip:hover {
  transform: translateY(-2px);
  border-color: #7dd3fc;
  box-shadow: 0 14px 24px -18px rgba(2, 132, 199, 0.6);
}

.inv-action-chip:hover::before {
  opacity: 1;
}

.adm-action-chip,
.inv-action-chip {
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.adm-action-chip > *,
.inv-action-chip > * {
  position: relative;
  z-index: 1;
}

.dash-action-icon {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid #c5daef;
  background: linear-gradient(160deg, #f8fbff 0%, #eff6ff 100%);
  color: #0b3d8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.dash-action-icon svg {
  width: 15px;
  height: 15px;
}

.dash-action-icon svg [stroke] {
  stroke-width: 2.1;
}

.dash-action-label {
  flex: 1;
  min-width: 0;
}

.dash-action-arrow {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.adm-action-chip:hover .dash-action-arrow,
.inv-action-chip:hover .dash-action-arrow {
  color: #0284c7;
  transform: translateX(2px);
}

.inv-list-item {
  display: block;
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.inv-list-item:hover {
  border-color: rgba(125, 211, 252, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -19px rgba(2, 132, 199, 0.85);
}

.inv-list-item-glow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #93c5fd;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.inv-list-item:hover .inv-list-item-glow {
  opacity: 1;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
}

.inv-segmented-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 9999px;
  padding: 4px;
  margin-bottom: 12px;
  border: 1px solid #dce5f3;
  background: #f8fbff;
}

.inv-segmented-control span {
  font-size: 0.72rem;
  color: #64748b;
  padding: 6px 10px;
  border-radius: 9999px;
  font-weight: 600;
}

.inv-segmented-control .is-active {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbe4f1;
  box-shadow: 0 8px 14px -12px rgba(2, 8, 23, 0.65);
}

.admin-dashboard {
  position: relative;
}

.adm-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(1.4rem, 2.1vw, 2.25rem);
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 90% 90%, rgba(103, 232, 249, 0.32), rgba(103, 232, 249, 0) 36%),
    linear-gradient(126deg, #0f2d7f 0%, #126ecf 54%, #06b6d4 100%);
  box-shadow: 0 24px 44px -24px rgba(8, 47, 73, 0.8);
}

.adm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

.adm-hero-content {
  position: relative;
  z-index: 1;
}

.adm-hero-kicker {
  margin: 0 0 8px;
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.adm-hero-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
  line-height: 1.12;
}

.adm-hero-copy {
  margin: 12px 0 0;
  color: rgba(241, 245, 249, 0.95);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.4;
  max-width: 820px;
}

.adm-kpi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.adm-kpi-card {
  --adm-accent: #0ea5e9;
  flex: 1 1 calc(50% - 12px);
  min-width: 220px;
  position: relative;
  border-radius: 20px;
  padding: 14px;
  min-height: 138px;
  border: 1px solid #dbe6f4;
  background:
    radial-gradient(circle at 100% -10%, rgba(125, 211, 252, 0.14), rgba(255, 255, 255, 0) 42%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: 0 18px 35px -28px rgba(2, 8, 23, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.adm-kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--adm-accent), rgba(255, 255, 255, 0));
}

.adm-kpi-card:hover {
  transform: translateY(-2px);
  border-color: #b9defb;
  box-shadow: 0 24px 42px -30px rgba(2, 132, 199, 0.7);
}

.adm-kpi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.adm-kpi-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  font-size: clamp(0.65rem, 0.8vw, 0.76rem);
  font-weight: 700;
}

.adm-kpi-icon {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--adm-accent);
  border: 1px solid #d5e8fc;
  background: #f2f9ff;
  box-shadow: 0 10px 20px -16px rgba(14, 165, 233, 0.85);
  flex: 0 0 auto;
}

.adm-kpi-icon svg {
  width: 17px;
  height: 17px;
}

.adm-kpi-value {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.adm-kpi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.adm-kpi-meta {
  margin: 0;
  color: #64748b;
  font-size: clamp(0.72rem, 0.84vw, 0.84rem);
}

.adm-kpi-tag {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  padding: 4px 8px;
  color: #475569;
  border: 1px solid #dce5f1;
  background: #f8fafc;
  white-space: nowrap;
}

.adm-kpi-tag--up {
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.adm-kpi-tag--down {
  color: #be123c;
  border-color: #fecdd3;
  background: #fff1f2;
}

.adm-kpi-progress {
  margin-top: 10px;
  height: 6px;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #dae4f1;
  background: #eaf0f8;
}

.adm-kpi-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--adm-accent), #67e8f9);
  transition: width 0.7s ease;
}

.adm-kpi-card--sky {
  --adm-accent: #0ea5e9;
}

.adm-kpi-card--indigo {
  --adm-accent: #4f46e5;
}

.adm-kpi-card--teal {
  --adm-accent: #0f766e;
}

.adm-kpi-card--violet {
  --adm-accent: #7c3aed;
}

.adm-kpi-card--amber {
  --adm-accent: #d97706;
}

.adm-kpi-card--blue {
  --adm-accent: #2563eb;
}

.adm-kpi-card--emerald {
  --adm-accent: #059669;
}

.adm-kpi-card--slate {
  --adm-accent: #334155;
}

.adm-kpi-span-2 {
  flex-basis: calc(50% - 12px);
}

@media (min-width: 1024px) {
  .adm-kpi-grid {
    gap: 14px;
  }

  .adm-kpi-card {
    flex-basis: calc(25% - 14px);
    min-width: 230px;
    min-height: 144px;
    padding: 16px;
  }
}

.adm-surface {
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.97));
  box-shadow: 0 20px 40px -34px rgba(2, 8, 23, 0.75);
}

.adm-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.adm-panel-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0284c7;
}

.adm-panel-link:hover {
  color: #0369a1;
}

.adm-segmented-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 9999px;
  padding: 4px;
  margin-bottom: 12px;
  border: 1px solid #dce5f3;
  background: #f8fbff;
}

.adm-segmented-control span {
  font-size: 0.72rem;
  color: #64748b;
  padding: 6px 10px;
  border-radius: 9999px;
  font-weight: 600;
}

.adm-segmented-control .is-active {
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbe4f1;
  box-shadow: 0 8px 14px -12px rgba(2, 8, 23, 0.65);
}

.adm-chart-wrap {
  position: relative;
}

.adm-chart-wrap--line {
  height: 300px;
}

.adm-chart-wrap--donut {
  height: 300px;
}

.adm-action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adm-action-chip {
  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid #dbe4f2;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  font-size: 0.91rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.adm-action-chip:hover {
  transform: translateY(-2px);
  border-color: #7dd3fc;
  box-shadow: 0 14px 24px -18px rgba(2, 132, 199, 0.6);
}

.adm-list-item {
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.adm-list-item:hover {
  border-color: rgba(125, 211, 252, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -19px rgba(2, 132, 199, 0.85);
}

@media (max-width: 1279px) {
  .inv-action-chip {
    flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 1023px) {
  .dash-side {
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .inv-metric {
    flex: 1 1 calc(50% - 10px);
    min-width: 220px;
    min-height: 118px;
  }

  .inv-chart-wrap--line,
  .inv-chart-wrap--donut {
    height: 250px;
  }

  .adm-action-chip {
    flex-basis: calc(50% - 10px);
  }

  .adm-chart-wrap--line,
  .adm-chart-wrap--donut {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .dash-topbar-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dash-page-title {
    font-size: clamp(1.45rem, 6.2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .inv-hero {
    border-radius: 28px;
    padding: 1.45rem;
  }

  .inv-hero-copy {
    font-size: clamp(1.15rem, 4.7vw, 1.5rem);
    line-height: 1.38;
  }

  .inv-hero-pill {
    width: 100%;
  }

  .inv-metrics-grid {
    gap: 10px;
  }
  .inv-metric {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    min-height: 122px;
    padding: 14px 12px;
  }

  .inv-metric-value {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    margin: 8px 0 6px;
  }

  .inv-metric-meta {
    font-size: 0.72rem;
  }

  .inv-metric-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .inv-metric-trend {
    font-size: 0.63rem;
    padding: 3px 7px;
  }

  .inv-segmented-control {
    width: 100%;
    justify-content: space-between;
  }

  .inv-segmented-control span {
    flex: 1;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .inv-action-chip,
  .adm-action-chip {
    flex-basis: calc(50% - 10px);
    min-width: 0;
  }

  .inv-chart-wrap--line {
    height: 230px;
  }

  .inv-chart-wrap--donut {
    height: 245px;
  }

  .adm-hero {
    border-radius: 28px;
    padding: 1.4rem;
  }

  .adm-hero-copy {
    font-size: clamp(1.1rem, 4.6vw, 1.45rem);
  }

  .adm-kpi-grid {
    gap: 10px;
  }
  .adm-kpi-card {
    flex-basis: calc(50% - 10px);
    min-width: 0;
    min-height: 124px;
    padding: 12px;
  }

  .adm-kpi-value {
    font-size: clamp(1.8rem, 7.6vw, 2.3rem);
    margin: 9px 0 7px;
  }

  .adm-kpi-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .adm-kpi-tag {
    font-size: 0.61rem;
    padding: 3px 7px;
  }

  .adm-segmented-control {
    width: 100%;
    justify-content: space-between;
  }

  .adm-segmented-control span {
    flex: 1;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .adm-chart-wrap--line {
    height: 235px;
  }

  .adm-chart-wrap--donut {
    height: 250px;
  }
}

@media (max-width: 360px) {
  .inv-metric,
  .adm-kpi-card,
  .adm-kpi-span-2 {
    flex-basis: 100%;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animated-rise {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.animated-delay-1 {
  animation-delay: 0.12s;
}

.animated-delay-2 {
  animation-delay: 0.2s;
}

.animated-delay-3 {
  animation-delay: 0.28s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   PRINT
   ======================================== */
@media print {

  .main-navbar,
  .top-bar,
  #mobile-nav-overlay,
  .no-print {
    display: none !important;
  }

  body,
  .public-shell,
  .dash-main-shell {
    background: #fff !important;
  }

  .panel-shadow,
  .glass-card,
  .tech-card {
    box-shadow: none !important;
    border-color: #e2e8f0 !important;
  }
}
