:root {
  --bg-main: #f7faff;
  --bg-soft: #ffffff;
  --panel: rgba(0, 16, 82, 0.92);
  --card: rgba(255, 255, 255, 0.95);
  --line: rgba(255, 255, 255, 0.92);
  --text: #0b2068;
  --muted: #3b579b;
  --accent: #0033ff;
  --accent-2: #ff0000;
  --success: #0033ff;
  --danger: #ff0000;
  --warning: #ff0000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 51, 255, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(255, 0, 0, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 50% 88%, rgba(0, 51, 255, 0.05) 0%, transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 50%, #fff8f8 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(90deg, rgba(0, 51, 255, 0.96) 0%, rgba(0, 51, 255, 0.96) 49%, rgba(255, 0, 0, 0.96) 51%, rgba(255, 0, 0, 0.96) 100%),
    rgba(0, 16, 82, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 9;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f8ff;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 1.05rem;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #0033ff, #ff0000);
  box-shadow: 0 12px 28px rgba(8, 11, 30, 0.48);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 10, 30, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
  color: #ffffff;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  color: #e8edff;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.container {
  width: 100%;
  flex: 1 0 auto;
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(0, 51, 255, 0.26);
  background: linear-gradient(100deg, rgba(0, 51, 255, 0.95) 0%, rgba(0, 51, 255, 0.95) 50%, rgba(255, 0, 0, 0.95) 100%);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 0, 0, 0.16), transparent 36%),
    radial-gradient(circle at 8% 94%, rgba(0, 51, 255, 0.14), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  box-shadow: 0 22px 48px rgba(12, 29, 80, 0.14);
  padding: 42px clamp(20px, 4vw, 36px);
  margin-bottom: 22px;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  right: -120px;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.16), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero-decor {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: clamp(14px, 2vw, 32px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.icon-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 148px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 51, 255, 0.3);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 255, 0.9));
  box-shadow: 0 16px 34px rgba(12, 29, 80, 0.16);
  backdrop-filter: blur(8px);
}

.float-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 1), rgba(247, 251, 255, 0.95));
  border: 1px solid rgba(0, 51, 255, 0.24);
  box-shadow: 0 10px 22px rgba(12, 29, 80, 0.16);
  animation: drift 7s ease-in-out infinite;
}

.float-icon:nth-child(2n) {
  animation-delay: 0.9s;
}

.float-icon:nth-child(3n) {
  animation-delay: 1.7s;
}

.hero-content {
  max-width: min(760px, calc(100% - 210px));
  position: relative;
  z-index: 2;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: #ffffff;
  color: #001a66;
  border: 1px solid rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1.02;
  margin: 14px 0 12px;
  font-weight: 800;
  max-width: 760px;
  position: relative;
  z-index: 2;
  color: #0b2068;
}

.hero-subtitle {
  color: #2c478f;
  margin: 0;
  max-width: 680px;
  font-size: 1.04rem;
  position: relative;
  z-index: 2;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 255, 0.92));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(12, 29, 80, 0.12);
  padding: 18px;
  color: #0b2068;
}

.title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b2068;
}

.subtitle {
  margin: 0;
  color: #334d8f;
  line-height: 1.5;
}

.section-title {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 800;
  color: #0b2068;
}

.panel-header {
  margin-bottom: 12px;
}

.module-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.module-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0b2068;
  border: 2px solid rgba(0, 51, 255, 0.74);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.95));
  border-radius: 18px;
  padding: 13px 20px;
  font-size: 1.03rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(12, 29, 80, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.module-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(255, 233, 233, 0.95));
  border-color: rgba(255, 0, 0, 0.85);
  box-shadow: 0 14px 28px rgba(12, 29, 80, 0.16);
}

.module-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 51, 255, 0.34);
  background: linear-gradient(140deg, rgba(0, 51, 255, 0.18), rgba(255, 0, 0, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.module-link-text {
  line-height: 1;
}

.module-link-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(90deg, #0033ff 0%, #0033ff 50%, #ff0000 50%, #ff0000 100%);
  box-shadow: 0 18px 40px rgba(255, 0, 0, 0.34);
}

.module-link-active .module-link-icon {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.26);
}

.dashboard-highlight {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 0, 0, 0.28), transparent 38%),
    radial-gradient(circle at 12% 120%, rgba(0, 51, 255, 0.26), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.95));
  box-shadow: 0 14px 28px rgba(12, 29, 80, 0.12);
  color: #0b2068;
}

.dashboard-highlight-admin {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 0, 0, 0.32), transparent 38%),
    radial-gradient(circle at 12% 130%, rgba(0, 51, 255, 0.3), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.95));
}

.dashboard-highlight-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.dash-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #ffffff;
  color: #001b8e;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  padding: 6px 11px;
}

.dash-title {
  margin-top: 10px;
}

.dashboard-orb {
  width: 118px;
  height: 118px;
  border-radius: 999px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: conic-gradient(from 210deg, #0033ff 0deg 180deg, #ff0000 180deg 360deg);
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.18), 0 16px 34px rgba(4, 10, 36, 0.44);
}

.dashboard-orb span {
  display: block;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

.dashboard-orb small {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff4ff;
}

.dash-pill-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-pill {
  border-radius: 999px;
  border: 1px solid rgba(0, 51, 255, 0.3);
  background: linear-gradient(100deg, rgba(255, 255, 255, 1), rgba(242, 247, 255, 0.95));
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1c3884;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-tile {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.94));
  padding: 18px;
  box-shadow: 0 10px 22px rgba(12, 29, 80, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0033ff;
}

.dashboard-tile:nth-child(3n + 2)::before {
  background: #ff0000;
}

.dashboard-tile:nth-child(3n + 3)::before {
  background: linear-gradient(90deg, #0033ff 0%, #0033ff 50%, #ff0000 50%, #ff0000 100%);
}

.dashboard-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.52);
}

.dashboard-tile h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #0b2068;
}

.dashboard-value {
  display: inline-block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.quick-actions-card {
  margin-bottom: 16px;
}

.quick-actions-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-action {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 13px 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 255, 0.94));
  box-shadow: 0 10px 22px rgba(12, 29, 80, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  border-left: 5px solid #0033ff;
  color: #0b2068;
}

.quick-action:nth-child(3n + 2) {
  border-left-color: #ff0000;
}

.quick-action:nth-child(3n + 3) {
  border-left-color: #001b8e;
}

.quick-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.55);
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 236, 236, 0.96));
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  border: 1px solid rgba(0, 51, 255, 0.28);
  background: linear-gradient(140deg, rgba(0, 51, 255, 0.2), rgba(255, 0, 0, 0.24));
}

.quick-action strong {
  display: block;
  margin-bottom: 3px;
}

.quick-action small {
  color: #375498;
  font-size: 0.82rem;
}

.dashboard-extra {
  margin-bottom: 16px;
}

.mini-heading {
  margin: 14px 0 8px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2b4b95;
}

.hours-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 10px;
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 1), rgba(238, 246, 255, 0.95));
  color: #0b2068;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(220, 230, 255, 0.7);
  border: 1px solid rgba(0, 51, 255, 0.24);
  overflow: hidden;
  margin: 8px 0;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0033ff, #ffffff 46%, #ff0000);
}

.week-chart {
  min-height: 180px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin-top: 14px;
}

.week-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.week-bar small {
  color: #365194;
}

.week-bar-fill {
  width: 100%;
  max-width: 28px;
  min-height: 6px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #0033ff 0%, #ff0000 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hours-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0;
  color: #365194;
  font-size: 0.92rem;
}

.stat-value {
  margin: 8px 0 2px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

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

.muted {
  color: #3b579b;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(236, 243, 255, 0.95));
  padding: 14px;
  color: #0b2068;
}

.news-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.news-date {
  font-size: 0.78rem;
  color: #3b579b;
}

.news-body {
  margin-top: 8px;
  color: #375498;
  line-height: 1.45;
  white-space: pre-line;
}

.news-media-wrap {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-media {
  width: 100%;
  display: block;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-height: 260px;
  object-fit: cover;
  background: rgba(244, 248, 255, 0.9);
}

iframe.news-media {
  aspect-ratio: 16/9;
  min-height: 220px;
  margin-top: 0;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.virtual-landing {
  max-width: 700px;
}

.virtual-meta-stack {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.virtual-link-label {
  display: block;
  margin-top: 10px;
}

.virtual-link-label span {
  display: block;
  margin-bottom: 6px;
  color: #2f4a93;
  font-size: 0.84rem;
  font-weight: 700;
}

.virtual-link-input {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  border-style: dashed;
}

label span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a3a88;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.98);
  color: #0b2068;
  padding: 10px 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 0, 0, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.22);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(12, 29, 80, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn::before {
  display: inline-flex;
  width: 1.05em;
  justify-content: center;
  line-height: 1;
  opacity: 0.95;
  font-size: 0.94em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(12, 29, 80, 0.24);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-small {
  padding: 11px 15px;
  font-size: 0.92rem;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #0033ff 0%, #0033ff 50%, #ff0000 50%, #ff0000 100%);
}

.btn-primary::before {
  content: "\2728";
}

.btn-dark {
  color: #fff;
  background: linear-gradient(130deg, #001b8e, #0033ff);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.btn-dark::before {
  content: "\2699";
}

.btn-outline {
  color: #001b8e;
  background: #ffffff;
  border: 1px solid rgba(0, 51, 255, 0.5);
}

.btn-outline:hover {
  border-color: rgba(255, 0, 0, 0.7);
}

.btn-outline::before {
  content: "\2192";
}

.btn-success {
  color: #ffffff;
  background: linear-gradient(120deg, #0033ff, var(--success));
}

.btn-success::before {
  content: "\2713";
}

.btn-danger {
  color: #fff;
  background: linear-gradient(120deg, #ff0000, var(--danger));
}

.btn-danger::before {
  content: "\2715";
}

.btn-warning {
  color: #ffffff;
  background: linear-gradient(120deg, #ff0000, var(--warning));
}

.btn-warning::before {
  content: "\26A0";
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-ok {
  background: rgba(0, 51, 255, 0.88);
  color: #ffffff;
}

.pill-bad {
  background: rgba(255, 0, 0, 0.86);
  color: #ffffff;
}

.pill-pending {
  background: rgba(255, 0, 0, 0.26);
  color: #b30000;
}

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

.item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(236, 243, 255, 0.95));
  color: #0b2068;
}

.item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.flash {
  border-radius: 12px;
  padding: 11px 13px;
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.flash-success {
  background: rgba(255, 255, 255, 0.96);
  color: #0b2068;
  border: 1px solid rgba(0, 51, 255, 0.5);
}

.flash-error {
  background: rgba(255, 255, 255, 0.96);
  color: #9f0000;
  border: 1px solid rgba(255, 0, 0, 0.44);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #1e3d8b;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.auth-wrap {
  max-width: 560px;
  margin: 24px auto;
}

.full {
  grid-column: 1 / -1;
}

.empty {
  padding: 14px;
  border: 1px dashed rgba(0, 51, 255, 0.34);
  border-radius: 14px;
  color: #365194;
}

@media (max-width: 1080px) {
  .grid-2,
  .grid-3,
  .news-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-highlight-head {
    align-items: flex-start;
  }

  .hero {
    padding: 30px 20px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .container {
    padding: 16px;
  }

  .hero-decor {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 14px 16px;
  }

  .footer-inner {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .topnav {
    gap: 6px;
  }

  .hero {
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 9vw, 2.9rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .module-nav {
    gap: 8px;
  }

  .module-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .dashboard-highlight-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-orb {
    width: 94px;
    height: 94px;
  }

  .dashboard-orb span {
    font-size: 1.45rem;
  }

  .dash-pill-row {
    gap: 8px;
  }

  .dash-pill {
    width: 100%;
  }

  .quick-action {
    padding: 12px;
  }

  .hours-metrics {
    grid-template-columns: 1fr;
  }

  .week-chart {
    gap: 6px;
  }

  .hours-line {
    flex-direction: column;
    gap: 6px;
  }
}
