/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f6f9;
  color: #111;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

main {
  padding-top: 70px;
}

.page-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.page-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: none;
}

.page-heading {
  margin-bottom: 20px;
}

.page-heading h1,
.page-heading h2 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: #163388;
  margin-bottom: 8px;
}

.page-heading p {
  color: #4b5563;
  line-height: 1.65;
}

.simple-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.simple-list li {
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
}

/* NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #163388;
  backdrop-filter: blur(18px);
  z-index: 100;
  height: 88px;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, width 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage .navbar {
  background: rgba(22, 51, 136, 0);
  backdrop-filter: blur(0px);
  border-bottom: 0px solid rgba(255, 255, 255, 0.08);
}

.homepage .navbar.scrolled {
  background: rgba(22, 51, 136, 0.98);
}

.navbar.scrolled {
  background: rgba(22, 51, 136, 0.98);
  backdrop-filter: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.logo {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
.logo-nav {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100%;
}
.logo-img {
  height: 32px !important;
  width: 32px !important;
  min-height: 32px !important;
  min-width: 32px !important;
  max-height: 32px !important;
  max-width: 32px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  display: block;
}

.logo-img1 {
  height: 155px !important;
  width: 155px !important;
  min-height: 155px !important;
  min-width: 155px !important;
  max-height: 155px !important;
  max-width: 155px !important;
  object-fit: contain !important;
  display: block;
}

.logo:hover {
  opacity: 0.8;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

@media (min-width: 769px) {
  #nav-menu > li:not(.menu-dropdown):not(.nav-profile-item) {
    display: none;
  }
}

.menu-dropdown {
  position: relative;
}

.nav-trigger {
  background: #163388;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.nav-trigger-label {
  white-space: nowrap;
}

.icon-down-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-trigger.open .icon-down-arrow {
  transform: rotate(180deg);
}

.navbar .logo-img1 {
  height: 144px !important;
  width: 144px !important;
  min-height: 144px !important;
  min-width: 144px !important;
  max-height: 144px !important;
  max-width: 144px !important;
}

.logo-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-trigger:hover,
.nav-trigger:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-trigger.open .menu-icon {
  display: none;
}

.nav-profile-item {
  display: flex;
  align-items: center;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.user-profile:hover .user-avatar,
.user-profile.active .user-avatar {
  transform: scale(1.05);
  border-color: #bdd4ff;
}

.user-profile .user-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
}

.user-profile-floating {
  display: none !important;
}

.header-dropdown-wrapper {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  min-width: 220px;
  background: #163388;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.header-dropdown-wrapper.is-active {
  display: block;
  animation: fadeInDown 0.18s ease both;
}

.dropdown-item-level1 {
  padding: 0 14px;
}

.dropdown-item-level1 + .dropdown-item-level1 {
  margin-top: 4px;
}

.dropdown-item-level1 a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-item-level1 a:hover,
.dropdown-item-level1 a:focus {
  color: #c5d5ff;
  background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item-level1 {
  padding: 0 14px;
}

.dropdown-item-level1 + .dropdown-item-level1 {
  margin-top: 4px;
}

.dropdown-item-level1 a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-item-level1 a:hover,
.dropdown-item-level1 a:focus {
  color: #c5d5ff;
  background: rgba(255, 255, 255, 0.05);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  position: relative;
}

.navbar ul a {
  transition: all 0.3s ease;
}

.navbar ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  display: none;
}

.navbar ul a:hover {
  transform: translateY(-2px);
}

.navbar ul a:hover::after {
  width: 100%;
}

.cta {
  background: white;
  color: #003366 !important;
  padding: 8px 18px;
  border-radius: 20px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-profile-item {
  position: relative;
}

.user-profile {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  object-fit: cover;
}

.user-profile:hover .user-menu,
.user-profile.active .user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.user-menu a,
.user-menu button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  color: #f8fafc;
  text-align: left;
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
}

.user-menu a:hover,
.user-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.user-menu button {
  text-align: left;
}

.user-menu a {
  text-decoration: none;
}

.user-menu .menu-title {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* USER PROFILE */
.user-profile {
  display: flex;
  align-items: center;
  margin-left: 18px;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  object-fit: cover;
}


.user-avatar:hover {
  border-color: #163388;
  transform: scale(1.05);
}

.user-profile-floating {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  z-index: 10000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.user-profile-floating::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 0.9rem;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.user-profile-floating:hover {
  transform: translateY(-2px);
}

.user-profile-floating:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(2px);
}

.user-profile-floating .user-avatar {
  width: 100%;
  height: 100%;
  border: 2px solid white;
}

@media (max-width: 768px) {
  .user-profile-floating {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .user-profile-floating::after {
    left: calc(100% + 8px);
    font-size: 0.82rem;
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* HERO SLIDER (FIXED) */
/* ========================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: black;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  text-align: center;
  gap: 1.2rem;
}


.hero-content h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.05;
}

h2,
.tile-overlay h3,
.footer-brand strong {
  font-family: "Poppins", system-ui, sans-serif;
}

.hero-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #ffffff;
  color: #003366;
  font-weight: 600;
  text-decoration: none;
}

.hero-content p {
  max-width: 700px;
  line-height: 1.5;
}

.hero-subtitle {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.95);
}

.typed-cursor {
  display: inline-block;
  margin-left: 6px;
  opacity: 0.9;
  animation: blink 1s steps(1,end) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes discover-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========================= */
/* HERO TYPOGRAPHY */
/* ========================= */
/* Subtitle / description */
.hero-content p {
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 400;
  opacity: 0.95;
}

/* Disclaimer text (if you keep the class) */
.hero-content .disclaimer {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Buttons */
.btn {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}



/* BUTTONS */
.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.primary {
  background: #163388;
  color: white;
}

.ghost {
  border: 2px solid white;
  color: white;
}

/* ========================= */
/* NEWS BOX */
/* ========================= */

.news-box {
  padding: 100px 8% 40px;
  background: transparent;
}

.news-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  align-items: center;
}

.news-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-breaking-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  overflow: hidden;
  width: 100%;
  background: #b91c1c;
  padding: 12px 0;
  border-radius: 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.news-breaking {
  display: inline-block;
  white-space: pre;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  padding-left: 100%;
  animation: news-scroll 10s linear infinite;
}

@keyframes news-scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.news-box::before {
  content: '';
  display: block;
  height: 60px;
}

.reviews {
  padding: 80px 8% 40px;
  background: linear-gradient(180deg, rgba(22, 51, 136, 0.04), rgba(255, 255, 255, 0.9));
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.reviews-header-title {
  width: 100%;
  text-align: center;
}

.reviews-subtitle {
  margin: 1.5% auto 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 500;
}

.reviews-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  color: #0a2e5e;
}

.review-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.review-slider::before {
  content: 'BREAKING';
  position: absolute;
  top: 16px;
  left: 18px;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 1;
}

.review-slide {
  position: relative;
  padding: 40px 32px;
  display: grid;
  gap: 20px;
  min-height: 220px;
  opacity: 0;
  transform: translateY(16px);
  animation: review-fade 0.8s ease forwards;
}

@keyframes review-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-text {
  margin: 0;
  color: #111827;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 500;
}

.review-meta {
  color: #475569;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .reviews {
    padding: 60px 6% 30px;
  }

  .review-slide {
    padding: 28px 22px;
  }
}


.news-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 51, 136, 0.12);
  color: #0e3b8f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1.05;
  color: #0a2e5e;
  margin: 0;
}

.news-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  max-width: 620px;
}

.news-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: #163388;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-weight: 600;
  width: fit-content;
}

.news-expand-btn:hover {
  background: #12285c;
  transform: translateY(-1px);
}

.news-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.news-card.expanded .news-details {
  max-height: 500px;
  opacity: 1;
}

.news-details ul {
  margin: 18px 0 0 20px;
  color: #475569;
  line-height: 1.75;
}

.news-details li {
  margin-bottom: 10px;
}

.news-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .news-card {
    grid-template-columns: 1fr;
  }

  .news-image {
    order: -1;
  }
}

/* ========================= */
/* TILES */
/* ========================= */

.tiles {
  padding: 80px 6%;
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* ========================= */
/* WELCOMING FEATURES */
/* ========================= */
.features-welcome {
  padding: 80px 8%;
  background: #ffffff;
  color: #0f172a;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 36px;
  color: #0a2b5a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.feature-item {
  text-align: center;
  padding: 12px 18px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0a2b5a;
  font-size: 36px;
  margin-bottom: 14px;
}
.feature-icon-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0a2b5a;
  font-size: 36px;
  margin-bottom: 14px;
  margin: 0 auto;
}
.feature-item h3 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #0a2b5a;
}

.feature-item p {
  font-family: "Roboto", system-ui, sans-serif;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-ico-nobox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 2px;
  height: auto;
  color: #0a2b5a;
  font-size: 24px;
  margin: 0 auto;
}

.copy-btn {
  padding: 6px 10px;
  font-size: 0.8rem;
  width: auto;
  margin-top: 10px;
}


@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-icon { width: 64px; height: 64px; font-size: 28px; }
}

@media (max-width: 768px) {
  .hero-subtitle { font-size: 1.05rem; }
}

.tile {
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid #e6e9ef;
  text-decoration: none;
  color: inherit;
}

.tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.tile-overlay {
  position: static;
  inset: auto;
  background: transparent;
  color: inherit;
  padding: 14px 16px 22px 16px;
  display: block;
  opacity: 1;
}

.tile-overlay h3 {
  margin: 0 0 8px 0;
  color: #0f172a;
}

.tile-overlay p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* MOBILE TILES - Show overlay by default on small screens */
@media (max-width: 768px) {
  .tiles {
    grid-template-columns: 1fr;
    padding: 60px 6%;
    gap: 18px;
  }

  .tile img {
    height: 160px;
  }

  .tile { border-radius: 10px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .tile {
    height: auto;
  }
}

/* GROUP STATUS */
.group-status {
  padding: 90px 8%;
  background: #eef3f9;
}

.status-panels {
  padding: 90px 8%;
  background: #ffffff;
}

.status-panels-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.status-block {
  background: #f8fbff;
  border-radius: 24px;
  padding: 30px 24px;
}

.status-block--left {
  border-right: none;
}

.status-block--right {
  border-left: none;
}

.status-action-link {
  display: inline-block;
  text-decoration: none;
  color: #163388;
}

.status-action-link h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
  color: #163388;
}

.status-block p {
  margin-bottom: 22px;
  line-height: 1.6;
  color: #334155;
}

.status-block-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.status-divider {
  width: 1px;
  height: 100%;
  background: #cbd5e1;
}

.status-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

.status-card strong {
  font-size: 1.6rem;
  color: #0f172a;
}

.status-link {
  display: none;
}

.group-status-cards,
.tiktok-status-cards {
  display: none;
}

.status-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

.status-card strong {
  font-size: 1.6rem;
  color: #0f172a;
}

.status-meta {
  font-size: 0.82rem;
  color: #64748b;
}

.status-card.status-good {
  border-color: #22c55e;
  background: #f0fdf4;
}

.status-card.status-good strong {
  color: #15803d;
}

.status-card.status-warn {
  border-color: #f59e0b;
  background: #fffbeb;
}

.status-card.status-warn strong {
  color: #b45309;
}

.status-card.status-bad {
  border-color: #ef4444;
  background: #fef2f2;
}

.status-card.status-bad strong {
  color: #b91c1c;
}

/* TIKTOK STATUS */
.tiktok-status {
  padding: 90px 8%;
  background: #ffffff;
}

.tiktok-status-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
  align-items: center;
}

.tiktok-status-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.tiktok-status-copy p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #334155;
}

.tiktok-status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

/* OPERATIONS STATUS */
.ops-status {
  padding: 90px 8%;
  background: #eef3f9;
}

.ops-status-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
  align-items: center;
}

.ops-status-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.ops-status-copy p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #334155;
}

.bot-link-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}

.bot-link-panel h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

#bot-link-state {
  margin-bottom: 10px;
  color: #334155;
  font-weight: 600;
}

.bot-link-form {
  display: grid;
  gap: 8px;
}

#bot-signin-code {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.bot-link-form input,
.bot-link-form select,
.bot-link-form button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 0.92rem;
}

.bot-link-form button {
  background: #163388;
  color: #ffffff;
  border-color: #163388;
  font-weight: 600;
  cursor: pointer;
}

.bot-link-form button:hover {
  background: #12285c;
  border-color: #12285c;
}

.ops-status-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.ops-metrics-grid {
  margin-top: 16px;
}

.status-updated {
  margin-top: 16px;
  color: #6b7280;
  font-size: 0.85rem;
  text-align: right;
}

.staff-operations-page {
  min-height: calc(100vh - 88px);
  padding-top: 110px;
}

.staff-operations-page ~ .site-footer {
  padding-top: 48px;
}

@media (max-width: 768px) {
  .staff-operations-page {
    min-height: calc(100vh - 60px);
    padding-top: 82px;
  }
}

/* ABOUT */
.about {
  padding: 100px 22%;
  text-align: center;
}

/* TEAM PAGE */
.team-page {
  min-height: 100vh;
  padding-top: 110px;
  background: #f4f6f9;
}

.team-hero {
  padding: 40px 8% 20px;
  text-align: center;
}

.team-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.team-hero p {
  color: #4b5563;
}

.team-list {
  padding: 30px 8% 80px;
}

.team-status {
  text-align: center;
  margin-bottom: 24px;
  color: #475569;
}

.team-status.error {
  color: #b91c1c;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
}

.team-name {
  display: block;
  font-size: 1.2rem;
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.team-role {
  display: block;
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 6px;
  text-align: center;
}

.team-bio {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: #163388;
  color: white;
  padding: 100px 8% 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 28px;
}

.footer-brand strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.footer-icons a:hover {
  background: rgba(255, 255, 255, 0.28);
}

.footer-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.footer-links a,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
    height: 60px;
  }
  
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none;
  }

  .logo-img1 {
    height: 60px !important;
    width: 60px !important;
    min-height: 60px !important;
    min-width: 60px !important;
    max-height: 60px !important;
    max-width: 60px !important;
  }
  
  .logo span {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .hamburger {
    display: flex !important;
  }
  
.navbar ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    overflow: hidden;
    max-height: 0;
    display: flex;
    flex-direction: column;
    background: rgba(6, 11, 24, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    width: 100%;
    text-align: left;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 0;
    gap: 0 !important;
    z-index: 9999;
    margin: 0;
    list-style: none;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    opacity: 0;
  }
  .navbar ul.active {
    max-height: 720px;
    opacity: 1;
    padding: 16px 0 22px;
  }
  .navbar ul li {
    width: 100%;
    padding: 0;
  }
  
  .navbar ul a {
    display: block;
    padding: 16px 24px;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .navbar ul a::after {
    display: none;
  }
  
  .navbar ul a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }
  
  .navbar ul a:active {
    background: rgba(255, 255, 255, 0.15);
  }
  
  .navbar .cta {
    background: #163388 !important;
    color: white !important;
    border-radius: 30px;
    margin: 20px 30px 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    display: block;
    width: calc(100% - 60px);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 51, 136, 0.3);
  }
  
  .navbar .cta:hover {
    background: #12285c !important;
    box-shadow: 0 6px 16px rgba(22, 51, 136, 0.4);
  }
  
  .navbar .cta:active {
    transform: scale(0.98);
  }

  .topbar {
    padding: 0 20px;
  }

  .site-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 25000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 13, 28, 0.92);
    backdrop-filter: blur(12px);
  }

  .site-gate-card {
    width: min(560px, 100%);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 26px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  }

  .site-gate-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    object-fit: contain;
  }

  .site-gate-card h2 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 1.85rem;
  }

  .site-gate-card p {
    margin: 0 0 24px;
    color: #cbd5e1;
    line-height: 1.7;
  }

  .site-gate-button {
    border: none;
    border-radius: 999px;
    padding: 14px 24px;
    background: #1e40af;
    color: white;
    font-weight: 700;
    cursor: default;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 100%;
    max-width: 280px;
  }

  .site-gate-button:disabled {
    opacity: 0.72;
  }

  .site-gate-note {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
  }

  .page-loading-overlay .loader-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(226, 232, 240, 0.18);
    border-top-color: #1e40af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  .page-loading-overlay .loader-text {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 320px;
    line-height: 1.55;
  }

  .page-loading-overlay img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .page-loading-overlay .loader-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(226, 232, 240, 0.18);
    border-top-color: #1e40af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  .page-loading-overlay .loader-text {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 320px;
    line-height: 1.55;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }


  .hero-content {
    position: static;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-actions a {
    width: 100%;
    max-width: 260px;
  }
  
  .hero-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .about {
    padding: 80px 10%;
  }

  .group-status-inner {
    grid-template-columns: 1fr;
  }

  .tiktok-status-inner {
    grid-template-columns: 1fr;
  }

  .ops-status-inner {
    grid-template-columns: 1fr;
  }

  .team-page {
    padding-top: 90px;
  }
  
  /* PWA Install Button Mobile */
  #pwa-install-button {
    bottom: 10px !important;
    right: 10px !important;
    left: auto !important;
    width: auto !important;
    max-width: 260px !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    min-width: 180px !important;
    border-radius: 999px !important;
  }
}
/* ========================= */
#pwa-install-button {
  bottom: 10px !important;
  right: 10px !important;
  left: auto !important;
  width: auto !important;
  max-width: 260px !important;
  justify-content: center !important;
  padding: 12px 20px !important;
  font-size: 15px !important;
  min-width: 180px !important;
  border-radius: 999px !important;
}

/* Removed stray invalid property at file end */

/* ========================= */
/* FAQ PAGE */
/* ========================= */

.faq-section {
  padding: 80px 10%;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-container h1 {
  color: #163388;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f9f9f9;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #163388;
  background: rgba(22, 51, 136, 0.08);
  box-shadow: 0 2px 8px rgba(22, 51, 136, 0.1);
}

.faq-question {
  padding: 16px 20px;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  margin: 0;
  font-size: 1rem;
  color: #163388;
  font-weight: 600;
}

.faq-answer {
  padding: 16px 20px;
  border-top: 1px solid #e0e0e0;
  color: #333;
  line-height: 1.7;
  background: white;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
}

.faq-unavailable {
  padding: 40px 24px;
  background: #f8f9ff;
  border: 1px solid #d8e3f7;
  border-radius: 14px;
  text-align: center;
  color: #415165;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.faq-template {
  display: none !important;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 10%;
  }

  .faq-container h1 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .faq-item {
    margin-bottom: 12px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .faq-question h3 {
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all .2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .material-icons {
  font-size: 42px;
  color: #17479e;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #17479e;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.alert {
  padding: 20px;
  background-color: #bed302; /* Red */
  color: white;
  margin-bottom: 15px;
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}

.security-alert {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);

    background: #c00000;
    color: white;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 12px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    border: 1px solid #ff4d4d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);

    z-index: 999999;

    animation: securityFlash 1s infinite;
}

.security-alert .material-symbols-outlined {
    font-size: 22px;
}

@keyframes securityFlash {
    0%, 100% {
        background: #c00000;
    }
    50% {
        background: #ff0000;
    }
}

.staff-operations-card {
  padding: 30px 34px 26px;
}

.staff-operations-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.staff-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.staff-focus-button {
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #ffffff;
  color: #163388;
  padding: 10px 14px;
  font: 600 0.86rem "Poppins", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.staff-focus-button:hover {
  background: #eef4ff;
}

.staff-overall-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  padding: 16px 18px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #f8fafc;
}

.staff-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0e9f6e;
  box-shadow: 0 0 0 5px #d9f7eb;
}

.staff-overall-status strong,
.staff-overall-status span:not(.staff-status-dot) {
  display: block;
}

.staff-overall-status strong {
  color: #0f172a;
  font-size: 1rem;
}

.staff-overall-status div span {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.8rem;
}

.staff-service-list {
  display: grid;
  gap: 10px;
}

.staff-service-list .status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 94px;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
}

.staff-service-list .status-label,
.staff-service-list .status-meta {
  display: block;
}

.staff-service-list .status-meta {
  margin-top: 4px;
}

.staff-service-list .status-card strong {
  font-size: 0.92rem;
  min-width: 76px;
  text-align: right;
}

.staff-service-list .status-card strong::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: #0e9f6e;
  box-shadow: 0 0 0 4px #d9f7eb;
  vertical-align: middle;
}

.staff-service-list .status-card.status-warn strong::before {
  background: #d97706;
  box-shadow: 0 0 0 4px #fef3c7;
}

.staff-service-list .status-card.status-bad strong::before {
  background: #dc2626;
  box-shadow: 0 0 0 4px #fee2e2;
}

.staff-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.staff-metrics-grid .status-card {
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.staff-focus-mode {
  background: #f8fafc;
}

.staff-focus-mode .navbar,
.staff-focus-mode .site-footer,
.staff-focus-mode #cookie-consent-banner {
  display: none !important;
}

.staff-focus-mode .staff-operations-page {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  padding: 32px 0 48px;
}

.staff-focus-mode .staff-operations-card {
  min-height: calc(100vh - 80px);
}

.staff-focus-mode .staff-operations-heading .staff-eyebrow,
.staff-focus-mode .staff-operations-heading h1,
.staff-focus-mode .staff-operations-heading .page-heading p {
  display: none;
}

@media (max-width: 768px) {
  .staff-operations-heading {
    flex-direction: column;
  }

  .staff-focus-button {
    align-self: flex-start;
  }

  .staff-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-service-list .status-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .staff-service-list .status-card strong {
    text-align: left;
  }

  .staff-focus-mode .staff-operations-page {
    width: calc(100% - 24px);
    padding: 12px 0;
  }
}

.staff-service-list .status-card > div {
  width: 100%;
  min-width: 0;
}

.staff-uptime-track {
  width: 100%;
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #e8ecf1 0 9px, #ffffff 9px 11px);
}

.staff-uptime-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #0e9f6e;
  transition: width 0.5s ease;
}

.staff-uptime-label {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 0.7rem;
}