:root {
  --bg: #f6f8fc;
  --card: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);
  --line: rgba(11, 18, 32, 0.1);

  --navy: #071a33;
  --navy2: #0b2a55;
  --gold: #d4af37;
  --gold2: #f2d06b;

  --sky: #18a0fb;
  --teal: #00c7b7;
  --red: #b22234;

  --primary: var(--navy2);
  --primary2: var(--gold);
}

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 550px at 12% -10%, rgba(11, 42, 85, 0.14), transparent 62%),
    radial-gradient(900px 520px at 100% 0%, rgba(212, 175, 55, 0.14), transparent 58%),
    radial-gradient(850px 520px at 60% 10%, rgba(24, 160, 251, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.text-muted {
  color: var(--muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.02em;
}

.hr-soft {
  border-color: rgba(11, 18, 32, 0.08) !important;
}

.object-fit-cover {
  object-fit: cover;
}

/* ================= NAVBAR ================= */

.nav-glass {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  box-shadow:
    0 8px 24px rgba(11, 18, 32, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    background 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    width 0.28s ease,
    margin 0.28s ease,
    border-radius 0.28s ease;
  will-change: transform, backdrop-filter, background;
}

.nav-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    radial-gradient(700px 120px at 10% 0%, rgba(24, 160, 251, 0.08), transparent 60%),
    radial-gradient(700px 120px at 90% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
  transition: opacity 0.28s ease;
}

.nav-glass::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  opacity: 0.35;
  background: linear-gradient(
    90deg,
    rgba(24, 160, 251, 0),
    rgba(24, 160, 251, 0.45),
    rgba(212, 175, 55, 0.45),
    rgba(0, 199, 183, 0.35),
    rgba(24, 160, 251, 0)
  );
  transition: opacity 0.28s ease;
}

.nav-glass .container {
  position: relative;
  z-index: 1;
}

.nav-glass.is-scrolled {
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px) saturate(185%);
  -webkit-backdrop-filter: blur(18px) saturate(185%);
  box-shadow:
    0 14px 38px rgba(11, 18, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.nav-glass.is-scrolled::before {
  opacity: 1;
}

.nav-glass.is-scrolled::after {
  opacity: 0.7;
}

.nav-glass.is-hidden {
  transform: translateY(-120%);
}

.nav-glass.is-floating {
  width: min(1180px, calc(100% - 20px));
  margin: 10px auto 0;
  border-radius: 18px;
  transform: translateY(8px) scale(0.988);
}

.navbar .navbar-brand {
  color: var(--navy) !important;
  font-weight: 750;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, text-shadow 0.25s ease;
}

.navbar .navbar-brand:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(24, 160, 251, 0.1);
}

.navbar .nav-link {
  position: relative;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.74) !important;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.navbar .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.42), transparent 65%);
  transition: opacity 0.25s ease;
}

.navbar .nav-link:hover {
  color: var(--navy2) !important;
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
  box-shadow:
    0 8px 18px rgba(11, 18, 32, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 0 18px rgba(24, 160, 251, 0.1);
}

.navbar .nav-link:hover::before {
  opacity: 1;
}

.navbar .nav-link:active {
  transform: translateY(0);
}

.navbar .nav-link.active {
  color: var(--navy2) !important;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 8px 20px rgba(11, 18, 32, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--gold), var(--teal));
  box-shadow: 0 0 10px rgba(24, 160, 251, 0.25);
}

.navbar-toggler {
  border: 1px solid rgba(11, 18, 32, 0.1) !important;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow:
    0 10px 20px rgba(11, 18, 32, 0.07),
    0 0 16px rgba(24, 160, 251, 0.08);
}

.navbar-toggler:focus {
  box-shadow:
    0 0 0 0.2rem rgba(24, 160, 251, 0.14),
    0 10px 20px rgba(11, 18, 32, 0.06) !important;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px;
  height: 380px;
  pointer-events: none;
  background:
    radial-gradient(rgba(24, 160, 251, 0.12), transparent 70%),
    radial-gradient(rgba(0, 199, 183, 0.1), transparent 70%),
    radial-gradient(rgba(212, 175, 55, 0.12), transparent 70%);
}

.hero-surface {
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(11, 18, 32, 0.11);
}

.hero .hero-surface,
.hero .cardx {
  height: 100%;
}

.hero .col-lg-5 .cardx img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* ================= LAYOUT ================= */

.section {
  padding: 72px 0;
}

.section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.brand-logo {
  height: 60px; /* keep normal navbar height */
  width: auto;
  transform: scale(4); /* makes logo appear bigger */
  transform-origin: left center; /* keeps alignment nice */
}


.cardx,
.kpi,
.hero-surface {
  height: 100%;
}

.icon-pill {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 160, 251, 0.12), rgba(0, 199, 183, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ================= CARDS ================= */

.cardx {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cardx:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 70px rgba(11, 18, 32, 0.11),
    0 0 24px rgba(24, 160, 251, 0.05);
}

.kpi {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kpi:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(11, 18, 32, 0.07),
    0 0 18px rgba(24, 160, 251, 0.05);
}

.trustbar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)),
    radial-gradient(900px 260px at 10% 10%, rgba(212, 175, 55, 0.1), transparent 60%),
    radial-gradient(900px 260px at 90% 20%, rgba(0, 199, 183, 0.08), transparent 60%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.06);
}

/* ================= BADGES ================= */

.badge.tech,
.badge.soft,
.badge.quality {
  padding: 0.45rem 0.7rem;
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.badge.tech:hover,
.badge.soft:hover,
.badge.quality:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 18px rgba(11, 18, 32, 0.06),
    0 0 14px rgba(24, 160, 251, 0.08);
}

.badge.soft {
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.24);
}

.badge.quality {
  background: rgba(0, 199, 183, 0.1);
  border-color: rgba(0, 199, 183, 0.22);
}

/* ================= BUTTONS ================= */

.btn-primary {
  color: #fff;
  background: rgba(11, 42, 85, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(11, 42, 85, 0.25);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  background: rgba(11, 42, 85, 0.9);
  transform: translateY(-1px);
  box-shadow:
    0 16px 36px rgba(11, 42, 85, 0.28),
    0 0 18px rgba(24, 160, 251, 0.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 18, 32, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
  box-shadow:
    0 12px 24px rgba(11, 18, 32, 0.07),
    0 0 16px rgba(24, 160, 251, 0.07);
}

/* ================= FORMS ================= */

.form-control,
.form-select,
textarea {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid var(--line) !important;
}

.form-control::placeholder,
textarea::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: rgba(24, 160, 251, 0.3) !important;
  box-shadow: 0 0 0 0.25rem rgba(24, 160, 251, 0.18) !important;
}

/* ================= FOOTER ================= */

.footer {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 -8px 30px rgba(11, 18, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 180px at 15% 0%, rgba(24, 160, 251, 0.08), transparent 60%),
    radial-gradient(700px 180px at 85% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
}

.footer > .container {
  position: relative;
  z-index: 1;
}

footer {
  margin-top: 0;
}

.footer-link {
  display: inline-block;
  color: rgba(11, 18, 32, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.25s ease;
}

.footer-link:hover {
  color: var(--navy2);
  transform: translateX(2px);
  text-shadow: 0 0 12px rgba(24, 160, 251, 0.08);
}

/* ================= IMAGE TILE ================= */

.image-tile {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.08);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= HERO LIVE DASHBOARD PREVIEW ================= */

.dashboard-preview {
  position: relative;
  width: 100%;
  perspective: 1400px;
}

.dashboard-glow {
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 120px;
  opacity: 0.95;
  pointer-events: none;
  filter: blur(30px);
  background:
    radial-gradient(circle at 20% 50%, rgba(24, 160, 251, 0.22), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(0, 199, 183, 0.18), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.18), transparent 45%);
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 30px 80px rgba(11, 18, 32, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: rotateX(6deg) rotateY(-6deg);
  transform-style: preserve-3d;
  animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    radial-gradient(700px 180px at 20% 0%, rgba(24, 160, 251, 0.1), transparent 60%),
    radial-gradient(700px 180px at 85% 0%, rgba(212, 175, 55, 0.1), transparent 60%);
}

.dashboard-window:hover {
  transform: rotateX(2deg) rotateY(-2deg) translateY(-4px);
  transition: transform 0.35s ease;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.16);
}

.dashboard-topbar span:nth-child(1) { background: #ff5f57; }
.dashboard-topbar span:nth-child(2) { background: #ffbd2e; }
.dashboard-topbar span:nth-child(3) { background: #28c840; }

.dashboard-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 360px;
}

.dashboard-sidebar {
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(11, 18, 32, 0.06);
}

.sidebar-logo {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 160, 251, 0.3), rgba(0, 199, 183, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sidebar-item {
  width: 100%;
  height: 12px;
  margin: 0 0 14px;
  opacity: 0.8;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.09);
}

.sidebar-item.active {
  background: linear-gradient(90deg, rgba(24, 160, 251, 0.7), rgba(0, 199, 183, 0.55));
  box-shadow: 0 0 14px rgba(24, 160, 251, 0.18);
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-title {
  width: 180px;
  height: 18px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.12);
}

.dashboard-actions {
  display: flex;
  gap: 10px;
}

.action-chip {
  width: 66px;
  height: 30px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 18, 32, 0.07);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

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

.stat-card,
.chart-card,
.activity-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 14px 30px rgba(11, 18, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.stat-card {
  padding: 16px;
  border-radius: 18px;
}

.stat-label {
  width: 74px;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.11);
}

.stat-value {
  width: 58px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(11, 42, 85, 0.75), rgba(24, 160, 251, 0.65));
}

.stat-trend {
  font-size: 0.8rem;
  font-weight: 700;
}

.stat-trend.up {
  color: #198754;
}

.stat-trend.down {
  color: #dc3545;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
}

.chart-card,
.activity-card {
  padding: 16px;
  border-radius: 20px;
}

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

.mini-title {
  width: 96px;
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.1);
}

.mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  box-shadow: 0 0 10px rgba(24, 160, 251, 0.22);
}

.line-chart {
  height: 170px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      to bottom,
      rgba(11, 18, 32, 0.04) 0,
      rgba(11, 18, 32, 0.04) 1px,
      transparent 1px,
      transparent 34px
    );
}

.line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke: url(#lineStroke);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawLine 4.5s ease forwards infinite;
}

.chart-area {
  fill: url(#areaFill);
  opacity: 0.95;
  animation: areaPulse 4.5s ease infinite;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-bar {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.1);
}

.dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-blue { background: var(--sky); }
.dot-gold { background: var(--gold); }
.dot-teal { background: var(--teal); }

.dashboard-footerbar {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.footer-chip {
  width: 70px;
  height: 14px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.08);
}

.footer-chip.wide {
  width: 110px;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;
  width: 50%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmerMove 2.8s linear infinite;
}

.float-card {
  animation: floatCard 4.8s ease-in-out infinite;
}

.float-card.delay-1 {
  animation-delay: 0.6s;
}

.float-card.delay-2 {
  animation-delay: 1.2s;
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

/* ================= KEYFRAMES ================= */

@keyframes dashboardFloat {
  0%,
  100% {
    transform: rotateX(6deg) rotateY(-6deg) translateY(0);
  }
  50% {
    transform: rotateX(4deg) rotateY(-4deg) translateY(-6px);
  }
}

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

@keyframes shimmerMove {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.35);
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 700;
  }
  35%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes areaPulse {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .section {
    padding: 56px 0;
  }

  .brand-logo {
    height: 30px;
  }

  .navbar .nav-link {
    margin: 0.15rem 0;
  }

  .nav-glass.is-floating {
    width: calc(100% - 12px);
    margin-top: 6px;
    border-radius: 14px;
  }

  .dashboard-window {
    transform: none;
    animation: none;
  }

  .dashboard-body {
    grid-template-columns: 70px 1fr;
    min-height: 320px;
  }

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 14px;
  }

  .dashboard-window {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .dashboard-window,
  .float-card,
  .pulse-dot,
  .chart-line,
  .chart-area,
  .shimmer::after {
    transition: none !important;
    animation: none !important;
  }

  .dashboard-window {
    transform: none !important;
  }
}