/* DataGlu — shared custom styles */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.glass-card {
  background: rgba(15, 21, 36, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(125, 211, 252, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(15, 21, 36, 0.6);
  transform: translateY(-2px);
}

.glass-card--flat:hover {
  transform: none;
}

.ai-glow {
  box-shadow: 0 0 40px -10px rgba(125, 211, 252, 0.15);
}

.glow-text {
  text-shadow: 0 0 15px rgba(125, 211, 252, 0.3);
}

.gradient-text {
  background: linear-gradient(120deg, #7dd3fc 0%, #c8a0f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body {
  background-color: #0a0e1a;
  color: #e0e8f0;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.bg-mesh {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(125, 211, 252, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 160, 240, 0.05) 0%, transparent 50%);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* Sticky, blurred header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease;
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled {
  background: rgba(10, 14, 26, 0.85);
  border-bottom-color: rgba(125, 211, 252, 0.12);
}

.nav-link {
  position: relative;
  color: #a0b4c4;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.nav-link:hover { color: #e0e8f0; }

.nav-link.is-active { color: #7dd3fc; }

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: #7dd3fc;
}

.nav-service-menu { position: relative; display: flex; align-items: center; height: 100%; }
.nav-service-menu__panel { position: absolute; top: calc(100% - 1rem); left: -1rem; z-index: 55; display: grid; min-width: 11rem; padding: 0.45rem; border: 1px solid rgba(125, 211, 252, 0.16); border-radius: 0.5rem; background: rgba(10, 14, 26, 0.96); box-shadow: 0 18px 38px -20px rgba(0, 0, 0, 0.85); opacity: 0; pointer-events: none; transform: translateY(-0.35rem); transition: opacity 0.18s ease, transform 0.18s ease; }
.nav-service-menu:hover .nav-service-menu__panel, .nav-service-menu:focus-within .nav-service-menu__panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-service-menu__link { padding: 0.58rem 0.68rem; border-radius: 0.28rem; color: #a0b4c4; font-size: 0.78rem; font-weight: 700; transition: background 0.18s ease, color 0.18s ease; }
.nav-service-menu__link:hover, .nav-service-menu__link.is-active { color: #7dd3fc; background: rgba(125, 211, 252, 0.09); }
.mobile-service-links > div { display: grid; gap: 0.15rem; margin: -0.2rem 0 0.5rem 1rem; padding-left: 0.85rem; border-left: 1px solid rgba(125, 211, 252, 0.18); }
.mobile-service-links > div a { padding: 0.38rem 0; color: #a0b4c4; font-size: 0.8rem; font-weight: 700; }
.mobile-service-links > div a.is-active { color: #7dd3fc; }

/* Scroll reveal — keyframe-based (transitions get restarted by the Tailwind CDN
   MutationObserver, which can leave content stuck at opacity 0).
   Default is visible; JS adds .dg-js to <html> to enable the entrance animation. */
.reveal { opacity: 1; }

.dg-js .reveal { opacity: 0; }

.dg-js .reveal.is-visible {
  animation: reveal-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Eager reveal — for above-the-fold (hero) content. Animates immediately on
   load instead of waiting for the IntersectionObserver, so the LCP element
   isn't held at opacity 0 while JS boots. */
.reveal-eager { opacity: 1; }

.dg-js .reveal-eager {
  animation: reveal-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .dg-js .reveal, .dg-js .reveal.is-visible,
  .reveal-eager, .dg-js .reveal-eager { opacity: 1; transform: none; animation: none; }
  .animate-pulse, .marquee-track { animation: none !important; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Floating animation for hero accents */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: float 6s ease-in-out infinite; }

/* Intelligence callout */
.intelligence-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  align-items: center;
  gap: 5rem;
}

.intelligence-demo {
  width: min(100%, 20rem);
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background: rgba(15, 21, 36, 0.7);
  box-shadow: 0 18px 45px -24px rgba(0, 0, 0, 0.85), 0 0 35px -20px rgba(125, 211, 252, 0.4);
}

.intelligence-demo__topline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.75rem;
  color: #7dd3fc;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(125, 211, 252, 0.12);
}

.intelligence-demo__topline .material-symbols-outlined { font-size: 1rem; }
.intelligence-demo__topline span:last-child { margin-left: auto; color: rgba(160, 180, 196, 0.55); font-size: 0.5rem; letter-spacing: 0.14em; }

.intelligence-demo__prompt {
  margin-top: 1rem;
  padding: 0.75rem;
  color: #e0e8f0;
  font-size: 0.8125rem;
  line-height: 1.4;
  background: rgba(125, 211, 252, 0.08);
  border-left: 2px solid #7dd3fc;
}

.intelligence-demo__thinking {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.85rem 0;
  color: rgba(160, 180, 196, 0.8);
  font-size: 0.625rem;
  line-height: 1.35;
}

.intelligence-demo__thinking i { width: 0.25rem; height: 0.25rem; border-radius: 50%; background: #7dd3fc; }
.intelligence-demo__thinking i:nth-child(2) { opacity: 0.65; }
.intelligence-demo__thinking i:nth-child(3) { opacity: 0.35; margin-right: 0.25rem; }

.intelligence-demo__answer { padding: 0.8rem; border: 1px solid rgba(125, 211, 252, 0.17); }
.intelligence-demo__answer strong { display: block; color: #e0e8f0; font-size: 0.75rem; }
.intelligence-demo__answer span { display: block; margin-top: 0.35rem; color: #a0b4c4; font-size: 0.6875rem; line-height: 1.45; }
.intelligence-demo__answer em { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.7rem; color: #7dd3fc; font-size: 0.625rem; font-style: normal; font-weight: 700; }
.intelligence-demo__answer .material-symbols-outlined { font-size: 0.75rem; }

@media (max-width: 1023px) {
  .intelligence-callout { grid-template-columns: 1fr; gap: 3rem; }
  .intelligence-demo { margin-top: 1rem; }
}

/* Alternating homepage intelligence feature */
.intelligence-callout--reverse { grid-template-columns: 25rem minmax(0, 1fr); gap: 5rem; }
.intelligence-demo--report { width: min(100%, 25rem); padding: 1.05rem; border-color: rgba(125, 211, 252, 0.24); background: rgba(15, 21, 36, 0.82); }
.intelligence-report__question { margin-top: 1rem; padding: 0.78rem; border-left: 2px solid #7dd3fc; color: #e0e8f0; background: rgba(125, 211, 252, 0.08); font-size: 0.76rem; font-weight: 650; line-height: 1.4; }
.intelligence-report__answer { margin-top: 0.75rem; padding: 0.8rem; border: 1px solid rgba(125, 211, 252, 0.15); }.intelligence-report__answer > p { margin: 0; color: #9fb6c6; font-size: 0.66rem; line-height: 1.5; }.intelligence-report__answer > p strong { color: #e2eff6; }
.intelligence-report__table { margin-top: 0.75rem; overflow: hidden; border: 1px solid rgba(125, 211, 252, 0.1); }.intelligence-report__table > div { display: grid; grid-template-columns: 1fr 2.2rem 3.2rem; align-items: center; gap: 0.45rem; min-height: 1.65rem; padding: 0 0.55rem; border-top: 1px solid rgba(125, 211, 252, 0.08); color: #b9d1dd; font-size: 0.58rem; }.intelligence-report__table > div:first-child { min-height: 1.5rem; border-top: 0; color: #7891a3; background: rgba(125, 211, 252, 0.05); font-size: 0.52rem; font-weight: 800; text-transform: uppercase; }.intelligence-report__table b { color: #ffc27a; }.intelligence-report__risk { color: #ff9d98 !important; }.intelligence-report__warning { color: #ffc27a !important; }.intelligence-report__bar { display: block; height: 0.28rem; border-radius: 1rem; background: linear-gradient(90deg, #7dd3fc var(--bar), rgba(125, 211, 252, 0.14) var(--bar)); }
.intelligence-report__answer footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.72rem; color: #7891a3; font-size: 0.54rem; font-weight: 650; }.intelligence-report__answer footer em { display: flex; align-items: center; color: #7dd3fc; font-style: normal; font-weight: 800; white-space: nowrap; }.intelligence-report__answer footer .material-symbols-outlined { font-size: 0.72rem; }

@media (max-width: 1023px) { .intelligence-callout--reverse { grid-template-columns: 1fr; gap: 3rem; }.intelligence-demo--report { order: 2; } }

/* Action Packs product illustration */
.action-packs-demo {
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 1rem;
  background: #101827;
  box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.9), 0 0 45px -24px rgba(125, 211, 252, 0.32);
}

.action-packs-demo__chrome {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(125, 211, 252, 0.11);
  background: rgba(8, 13, 24, 0.65);
}

.action-packs-demo__window-controls { display: flex; gap: 0.35rem; }
.action-packs-demo__window-controls i { display: block; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #3b4a5d; }
.action-packs-demo__window-controls i:first-child { background: rgba(255, 107, 107, 0.7); }
.action-packs-demo__window-controls i:nth-child(2) { background: rgba(255, 190, 92, 0.7); }
.action-packs-demo__window-controls i:last-child { background: rgba(125, 211, 252, 0.65); }
.action-packs-demo__title { display: flex; align-items: center; gap: 0.45rem; margin-left: 1.1rem; color: #dcecf7; font-size: 0.8rem; font-weight: 800; }
.action-packs-demo__title .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }
.action-packs-demo__status { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; color: #8fa8b9; font-size: 0.68rem; font-weight: 700; }
.action-packs-demo__status span, .action-pack-detail__ready span { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: #72d59b; box-shadow: 0 0 0 3px rgba(114, 213, 155, 0.12); }

.action-packs-demo__body { display: grid; grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.5fr); min-height: 38rem; }
.action-packs-list { padding: 1.15rem; border-right: 1px solid rgba(125, 211, 252, 0.11); background: rgba(8, 13, 24, 0.34); }
.action-packs-list__heading { display: flex; align-items: center; justify-content: space-between; margin: 0 0 1rem; }
.action-packs-list__heading p, .action-section-label { margin: 0; color: #dcecf7; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.action-packs-list__heading span { color: #7891a3; font-size: 0.68rem; }
.action-packs-list__heading > .material-symbols-outlined { color: #7dd3fc; font-size: 1.2rem; }

.action-pack-summary { margin-top: 0.65rem; padding: 0.9rem; border: 1px solid rgba(125, 211, 252, 0.1); border-radius: 0.55rem; background: rgba(20, 28, 46, 0.62); }
.action-pack-summary--selected { border-color: rgba(125, 211, 252, 0.7); background: rgba(15, 77, 110, 0.28); box-shadow: 0 0 0 2px rgba(125, 211, 252, 0.08); }
.action-pack-summary__badges { display: flex; gap: 0.35rem; }
.action-badge { display: inline-flex; align-items: center; width: fit-content; padding: 0.19rem 0.38rem; border-radius: 0.25rem; font-size: 0.58rem; font-weight: 800; line-height: 1; white-space: nowrap; }
.action-badge--blue { color: #bdeaff; background: rgba(125, 211, 252, 0.13); border: 1px solid rgba(125, 211, 252, 0.2); }
.action-badge--priority { color: #ffc2a8; background: rgba(255, 107, 107, 0.12); border: 1px solid rgba(255, 107, 107, 0.18); }
.action-badge--low { color: #a8e5bf; background: rgba(114, 213, 155, 0.1); border: 1px solid rgba(114, 213, 155, 0.16); }
.action-pack-summary h3 { margin: 0.55rem 0 0; color: #e0e8f0; font-size: 0.79rem; line-height: 1.35; font-weight: 750; }
.action-pack-summary p { margin: 0.34rem 0 0; color: #8fa8b9; font-size: 0.68rem; line-height: 1.35; }
.action-pack-summary__footer { display: flex; justify-content: space-between; align-items: center; gap: 0.4rem; margin-top: 0.75rem; color: #7e9baa; font-size: 0.61rem; font-weight: 700; }
.action-pack-summary__footer strong { color: #a8e5bf; font-size: 0.59rem; }
.action-pack-summary__footer .action-pack-summary__review { color: #ffc27a; }

.action-pack-detail { display: flex; flex-direction: column; min-width: 0; padding: 1.45rem; }
.action-pack-detail__header { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(125, 211, 252, 0.1); }
.action-pack-detail__eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 0.55rem; }
.action-confidence { display: flex; align-items: center; gap: 0.22rem; color: #9eb7c7; font-size: 0.67rem; font-weight: 700; }
.action-confidence .material-symbols-outlined { color: #7dd3fc; font-size: 0.85rem; }
.action-pack-detail h3 { margin: 0.58rem 0 0; color: #f0f7fb; font-size: 1.2rem; line-height: 1.25; font-weight: 800; }
.action-pack-detail__header p { display: flex; align-items: center; gap: 0.28rem; margin: 0.5rem 0 0; color: #9eb7c7; font-size: 0.72rem; }
.action-pack-detail__header p strong { color: #c6dbe7; }
.action-pack-detail__header p .material-symbols-outlined { color: #7dd3fc; font-size: 0.95rem; }
.action-pack-detail__ready { display: flex; align-items: center; gap: 0.38rem; white-space: nowrap; color: #a8e5bf; font-size: 0.62rem; font-weight: 800; }

.action-pack-records { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; padding: 1rem 0; border-bottom: 1px solid rgba(125, 211, 252, 0.1); }
.action-pack-records .action-section-label { grid-column: 1 / -1; margin-bottom: 0.1rem; }
.action-record { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.action-record__avatar { display: grid; flex: 0 0 auto; place-items: center; width: 1.7rem; height: 1.7rem; border-radius: 50%; color: #bdeaff; background: #1c4059; font-size: 0.63rem; font-weight: 800; }
.action-record:nth-of-type(3) .action-record__avatar { color: #e0c4ff; background: #3c3157; }
.action-record strong, .action-record span:not(.action-record__avatar) { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.action-record strong { color: #dcecf7; font-size: 0.67rem; }
.action-record span:not(.action-record__avatar) { margin-top: 0.12rem; color: #7891a3; font-size: 0.59rem; }

.action-pack-actions { padding-top: 1rem; }
.action-pack-actions__heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.55rem; }
.action-pack-actions__heading > span { color: #7891a3; font-size: 0.64rem; font-weight: 700; }
.prepared-action { display: flex; align-items: center; gap: 0.58rem; min-height: 2.7rem; margin-top: 0.38rem; padding: 0.5rem 0.62rem; border: 1px solid rgba(125, 211, 252, 0.1); border-radius: 0.42rem; background: rgba(20, 28, 46, 0.5); cursor: default; }
.prepared-action--checked { border-color: rgba(125, 211, 252, 0.21); background: rgba(125, 211, 252, 0.045); }
.prepared-action input { position: absolute; opacity: 0; pointer-events: none; }
.prepared-action__check { display: grid; flex: 0 0 auto; place-items: center; width: 0.92rem; height: 0.92rem; border: 1px solid #567286; border-radius: 0.18rem; color: transparent; font-family: sans-serif; font-size: 0.62rem; font-weight: 900; line-height: 1; }
.prepared-action--checked .prepared-action__check { border-color: #7dd3fc; background: #7dd3fc; }
.prepared-action--checked .prepared-action__check::after { content: ""; width: 0.42rem; height: 0.22rem; border-bottom: 2px solid #001f2e; border-left: 2px solid #001f2e; transform: translateY(-0.05rem) rotate(-45deg); }
.prepared-action__text { min-width: 0; color: #cbdde8; font-size: 0.71rem; font-weight: 650; line-height: 1.25; }
.prepared-action .action-badge { margin-left: auto; }

.action-pack-detail__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.2rem; }
.action-pack-detail__footer > p { display: flex; align-items: center; gap: 0.34rem; margin: 0; color: #88a3b4; font-size: 0.65rem; font-weight: 650; }
.action-pack-detail__footer > p .material-symbols-outlined { color: #7dd3fc; font-size: 0.9rem; }
.action-pack-detail__footer > div { display: flex; gap: 0.45rem; }
.action-button { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; min-height: 2.2rem; padding: 0.45rem 0.7rem; border-radius: 0.38rem; font-family: inherit; font-size: 0.66rem; font-weight: 800; transition: transform 0.2s ease, filter 0.2s ease; }
.action-button:hover { transform: translateY(-1px); filter: brightness(1.06); }
.action-button--secondary { color: #b9cbd7; border: 1px solid rgba(125, 211, 252, 0.2); background: rgba(20, 28, 46, 0.75); }
.action-button--primary { color: #001f2e; border: 1px solid #7dd3fc; background: #7dd3fc; box-shadow: 0 8px 18px -9px rgba(125, 211, 252, 0.85); }
.action-button--primary .material-symbols-outlined { font-size: 0.9rem; }

@media (max-width: 800px) {
  .action-packs-demo__body { grid-template-columns: 1fr; }
  .action-packs-list { border-right: 0; border-bottom: 1px solid rgba(125, 211, 252, 0.11); }
  .action-pack-records { grid-template-columns: 1fr; }
  .action-pack-detail { min-height: 35rem; }
}

@media (max-width: 520px) {
  .action-packs-demo__chrome { padding: 0 0.85rem; }
  .action-packs-demo__status { display: none; }
  .action-pack-detail { padding: 1rem; }
  .action-pack-detail__ready { display: none; }
  .action-pack-detail__footer { align-items: flex-start; flex-direction: column; }
  .action-pack-detail__footer > div { width: 100%; }
  .action-button { flex: 1; }
}

/* DataGlu Pulse product illustration */
.pulse-demo { overflow: hidden; border: 1px solid rgba(125, 211, 252, 0.18); border-radius: 1rem; background: #101827; box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.9), 0 0 45px -24px rgba(125, 211, 252, 0.28); }
.pulse-demo__chrome { display: flex; align-items: center; min-height: 3.25rem; padding: 0 1.25rem; border-bottom: 1px solid rgba(125, 211, 252, 0.11); background: rgba(8, 13, 24, 0.65); }
.pulse-demo__window-controls { display: flex; gap: 0.35rem; }
.pulse-demo__window-controls i { display: block; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #3b4a5d; }
.pulse-demo__window-controls i:first-child { background: rgba(255, 107, 107, 0.7); }
.pulse-demo__window-controls i:nth-child(2) { background: rgba(255, 190, 92, 0.7); }
.pulse-demo__window-controls i:last-child { background: rgba(125, 211, 252, 0.65); }
.pulse-demo__title { display: flex; align-items: center; gap: 0.45rem; margin-left: 1.1rem; color: #dcecf7; font-size: 0.8rem; font-weight: 800; }
.pulse-demo__title .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }
.pulse-demo__live { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; color: #a8e5bf; font-size: 0.68rem; font-weight: 800; }
.pulse-demo__live span { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: #72d59b; box-shadow: 0 0 0 3px rgba(114, 213, 155, 0.12); }
.pulse-demo__body { padding: 1.5rem; }
.pulse-demo__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.pulse-demo__eyebrow, .pulse-section-heading p { margin: 0; color: #8fa8b9; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.pulse-demo__header h3 { margin: 0.32rem 0 0; color: #f0f7fb; font-size: 1.32rem; font-weight: 800; line-height: 1.2; }
.pulse-demo__header > div > span { display: block; margin-top: 0.32rem; color: #7891a3; font-size: 0.67rem; }
.pulse-demo__view-toggle { display: flex; padding: 0.2rem; border: 1px solid rgba(125, 211, 252, 0.12); border-radius: 0.4rem; background: rgba(8, 13, 24, 0.56); color: #7891a3; font-size: 0.64rem; font-weight: 750; }
.pulse-demo__view-toggle span { margin: 0; padding: 0.36rem 0.58rem; }
.pulse-demo__view-toggle .pulse-demo__view-toggle--active { border-radius: 0.25rem; color: #001f2e; background: #7dd3fc; }
.pulse-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.6rem; margin-top: 1.25rem; }
.pulse-metric { min-width: 0; padding: 0.85rem; border: 1px solid rgba(125, 211, 252, 0.11); border-radius: 0.55rem; background: rgba(20, 28, 46, 0.62); }
.pulse-metric > span { display: block; overflow: hidden; color: #8fa8b9; font-size: 0.65rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.pulse-metric strong { display: block; margin-top: 0.42rem; color: #e8f5fb; font-size: 1.45rem; line-height: 1; }
.pulse-metric strong span { margin-left: 0.08rem; font-size: 0.72rem; }
.pulse-metric .pulse-warning { color: #ffc27a; }
.pulse-metric em { display: block; min-height: 0.9rem; margin-top: 0.43rem; color: #7891a3; font-size: 0.57rem; font-style: normal; font-weight: 700; }
.pulse-metric .pulse-positive { color: #a8e5bf; }
.pulse-demo__content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr); gap: 0.75rem; margin-top: 0.75rem; }
.pulse-chart, .pulse-attention { min-width: 0; padding: 1rem; border: 1px solid rgba(125, 211, 252, 0.11); border-radius: 0.55rem; background: rgba(20, 28, 46, 0.4); }
.pulse-section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.pulse-section-heading > div > span { display: block; margin-top: 0.24rem; color: #7891a3; font-size: 0.61rem; }
.pulse-section-heading > strong { color: #a8e5bf; font-size: 0.92rem; }
.pulse-chart__plot { height: 9.2rem; margin-top: 0.55rem; }
.pulse-chart__plot svg { display: block; width: 100%; height: 100%; overflow: visible; }
.pulse-chart__grid { fill: none; stroke: rgba(125, 211, 252, 0.1); stroke-width: 1; }
.pulse-chart__area { fill: rgba(125, 211, 252, 0.1); }
.pulse-chart__line { fill: none; stroke: #7dd3fc; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.pulse-chart__dot { fill: #7dd3fc; stroke: #e0f6ff; stroke-width: 3; }
.pulse-chart__axis { display: flex; justify-content: space-between; color: #667f91; font-size: 0.55rem; font-weight: 650; }
.pulse-attention__count { display: grid; place-items: center; min-width: 1.3rem; height: 1.3rem; border-radius: 50%; color: #ffc27a; background: rgba(255, 190, 92, 0.1); font-size: 0.65rem; font-weight: 800; }
.pulse-attention__item { display: grid; grid-template-columns: 0.42rem minmax(0, 1fr) auto; align-items: center; gap: 0.55rem; padding: 0.62rem 0; border-top: 1px solid rgba(125, 211, 252, 0.08); }
.pulse-attention__item:first-of-type { margin-top: 0.52rem; }
.pulse-attention__indicator { width: 0.38rem; height: 0.38rem; border-radius: 50%; }
.pulse-attention__indicator--red { background: #ff807b; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1); }
.pulse-attention__indicator--amber { background: #ffc27a; box-shadow: 0 0 0 3px rgba(255, 190, 92, 0.1); }
.pulse-attention__indicator--blue { background: #7dd3fc; box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1); }
.pulse-attention__item strong, .pulse-attention__item div span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pulse-attention__item strong { color: #dcecf7; font-size: 0.66rem; }
.pulse-attention__item div span { margin-top: 0.16rem; color: #7891a3; font-size: 0.58rem; }
.pulse-attention__item > .material-symbols-outlined { color: #7b9bae; font-size: 0.85rem; }
.pulse-demo__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.75rem; padding: 0.1rem 0.1rem 0; color: #8fa8b9; font-size: 0.64rem; font-weight: 650; }
.pulse-demo__footer p, .pulse-demo__footer > span { display: flex; align-items: center; gap: 0.32rem; margin: 0; }
.pulse-demo__footer p .material-symbols-outlined, .pulse-demo__footer > span .material-symbols-outlined { color: #7dd3fc; font-size: 0.88rem; }
.pulse-demo__footer > span { color: #7dd3fc; font-weight: 800; }

@media (max-width: 800px) {
  .pulse-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pulse-demo__content { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .pulse-demo__chrome { padding: 0 0.85rem; }
  .pulse-demo__body { padding: 1rem; }
  .pulse-demo__header { align-items: center; }
  .pulse-demo__view-toggle { font-size: 0.58rem; }
  .pulse-demo__view-toggle span { padding: 0.32rem 0.4rem; }
  .pulse-demo__footer { align-items: flex-start; flex-direction: column; }
}

/* AI Service Management page */
.asm-flow { overflow: hidden; border: 1px solid rgba(125, 211, 252, 0.2); border-radius: 1rem; background: #101827; box-shadow: 0 30px 75px -35px rgba(0, 0, 0, 0.9), 0 0 50px -27px rgba(125, 211, 252, 0.38); }
.asm-flow__topline { display: flex; align-items: center; gap: 0.45rem; padding: 0.85rem 1rem; border-bottom: 1px solid rgba(125, 211, 252, 0.11); color: #b9cfdd; font-size: 0.67rem; font-weight: 800; }
.asm-flow__topline .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }
.asm-flow__topline > span:last-child { margin-left: auto; color: #72d59b; font-size: 0.58rem; letter-spacing: 0.06em; text-transform: uppercase; }
.asm-flow__sources { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; padding: 1rem 1rem 0.3rem; }
.asm-flow__sources span { padding: 0.35rem 0.48rem; border: 1px solid rgba(125, 211, 252, 0.13); border-radius: 0.3rem; color: #8fa8b9; background: rgba(20, 28, 46, 0.7); font-size: 0.58rem; font-weight: 700; }
.asm-flow__connector { display: grid; justify-items: center; height: 2.35rem; color: #7dd3fc; }
.asm-flow__connector i { width: 1px; height: 1.35rem; background: linear-gradient(#355b70, #7dd3fc); }
.asm-flow__connector .material-symbols-outlined { margin-top: -0.3rem; font-size: 1rem; }
.asm-flow__pulse, .asm-flow__approval { margin: 0 1.2rem; padding: 0.9rem; border: 1px solid rgba(125, 211, 252, 0.17); border-radius: 0.55rem; background: rgba(20, 28, 46, 0.72); }
.asm-flow__pulse { border-color: rgba(125, 211, 252, 0.36); background: rgba(14, 77, 110, 0.2); }
.asm-flow__card-title, .asm-flow__approval-title { display: flex; align-items: center; gap: 0.38rem; color: #cdeaf9; font-size: 0.63rem; }
.asm-flow__card-title .material-symbols-outlined, .asm-flow__approval-title > .material-symbols-outlined { color: #7dd3fc; font-size: 0.95rem; }
.asm-flow__card-title em { margin-left: auto; padding: 0.18rem 0.35rem; color: #a8e5bf; border: 1px solid rgba(114, 213, 155, 0.2); border-radius: 0.25rem; background: rgba(114, 213, 155, 0.08); font-size: 0.53rem; font-style: normal; font-weight: 800; }
.asm-flow__pulse h2 { margin: 0.7rem 0 0; color: #eff9ff; font-size: 1rem; line-height: 1.25; font-weight: 800; }
.asm-flow__pulse > p { margin: 0.36rem 0 0; color: #9eb8c8; font-size: 0.66rem; line-height: 1.45; }
.asm-flow__pulse > div:last-child { display: flex; justify-content: space-between; gap: 0.5rem; margin-top: 0.7rem; color: #8fa8b9; font-size: 0.59rem; font-weight: 700; }
.asm-flow__pulse b { display: flex; align-items: center; gap: 0.15rem; color: #7dd3fc; }
.asm-flow__pulse b .material-symbols-outlined { font-size: 0.75rem; }
.asm-flow__approval-title > span:last-child { margin-left: auto; color: #8fa8b9; font-size: 0.55rem; font-weight: 700; }
.asm-flow__approval ul { display: grid; gap: 0.38rem; padding: 0; margin: 0.75rem 0; list-style: none; }
.asm-flow__approval li { display: flex; align-items: center; gap: 0.4rem; color: #c7dbe7; font-size: 0.62rem; }
.asm-flow__approval li i, .asm-action-mini__actions i { width: 0.7rem; height: 0.7rem; border: 1px solid #7dd3fc; border-radius: 0.15rem; background: #7dd3fc; }
.asm-flow__approval li i::after, .asm-action-mini__actions i::after { content: ""; display: block; width: 0.34rem; height: 0.18rem; margin: 0.15rem 0 0 0.12rem; border-bottom: 2px solid #001f2e; border-left: 2px solid #001f2e; transform: rotate(-45deg); }
.asm-flow__approval button, .asm-action-mini button { display: flex; align-items: center; justify-content: center; gap: 0.25rem; width: 100%; padding: 0.52rem; border: 0; border-radius: 0.35rem; color: #001f2e; background: #7dd3fc; box-shadow: 0 7px 16px -9px rgba(125, 211, 252, 0.9); font-family: inherit; font-size: 0.62rem; font-weight: 850; }
.asm-flow__approval button .material-symbols-outlined, .asm-action-mini button .material-symbols-outlined { font-size: 0.82rem; }
.asm-friction { padding: 1.3rem; border: 1px solid rgba(255, 107, 107, 0.16); border-radius: 0.75rem; background: rgba(61, 20, 20, 0.16); }
.asm-friction > p { margin: 0 0 0.8rem; color: #ffc2a8; font-size: 0.7rem; font-weight: 800; }
.asm-friction__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.48rem; }
.asm-friction__grid span { padding: 0.65rem; border: 1px solid rgba(255, 107, 107, 0.1); border-radius: 0.4rem; color: #c8b7b5; background: rgba(20, 28, 46, 0.45); font-size: 0.67rem; font-weight: 650; line-height: 1.35; }
.asm-friction__note { display: flex; gap: 0.55rem; margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(255, 107, 107, 0.12); }
.asm-friction__note .material-symbols-outlined { color: #ff807b; font-size: 1rem; }
.asm-friction__note p { margin: 0; color: #bca9a6; font-size: 0.67rem; line-height: 1.5; }
.asm-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.asm-compare__column { padding: 1rem; border: 1px solid rgba(125, 211, 252, 0.1); border-radius: 0.65rem; background: rgba(20, 28, 46, 0.45); }
.asm-compare__column--active { border-color: rgba(125, 211, 252, 0.3); background: rgba(14, 77, 110, 0.18); }
.asm-compare__label { margin: 0 0 0.8rem; color: #9bb6c7; font-size: 0.62rem; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.asm-compare__column > div { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.45rem; padding: 0.65rem; border-radius: 0.4rem; background: rgba(8, 13, 24, 0.35); }
.asm-compare__column > div .material-symbols-outlined { color: #8195a4; font-size: 1rem; }.asm-compare__column--active > div .material-symbols-outlined { color: #7dd3fc; }
.asm-compare__column > div p { margin: 0; color: #c4d4df; font-size: 0.7rem; font-weight: 650; }
.asm-pulse-mini { padding: 1rem; border: 1px solid rgba(125, 211, 252, 0.18); border-radius: 0.75rem; background: #101827; box-shadow: 0 18px 45px -26px rgba(0, 0, 0, 0.8); }
.asm-pulse-mini__top { display: flex; align-items: center; gap: 0.4rem; color: #d1e7f4; font-size: 0.68rem; }.asm-pulse-mini__top > .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }.asm-pulse-mini__top em { display: flex; align-items: center; gap: 0.24rem; margin-left: auto; color: #a8e5bf; font-size: 0.56rem; font-style: normal; font-weight: 750; }.asm-pulse-mini__top em i { width: 0.35rem; height: 0.35rem; border-radius: 50%; background: #72d59b; }
.asm-pulse-mini__date { margin: 0.9rem 0 0.45rem; color: #7791a2; font-size: 0.59rem; font-weight: 700; }
.asm-pulse-mini article { padding: 0.95rem; border: 1px solid rgba(125, 211, 252, 0.27); border-radius: 0.55rem; background: rgba(14, 77, 110, 0.18); }.asm-pulse-mini__impact { display: inline-block; padding: 0.2rem 0.36rem; border-radius: 0.23rem; color: #ffc27a; background: rgba(255, 190, 92, 0.1); font-size: 0.55rem; font-weight: 800; }.asm-pulse-mini h3 { margin: 0.6rem 0 0; color: #f0f7fb; font-size: 1rem; }.asm-pulse-mini article > p { margin: 0.4rem 0 0; color: #9eb8c8; font-size: 0.66rem; line-height: 1.45; }
.asm-pulse-mini__records { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.75rem; }.asm-pulse-mini__records span { padding: 0.28rem 0.36rem; border: 1px solid rgba(125, 211, 252, 0.13); border-radius: 0.22rem; color: #bdd8e7; background: rgba(20, 28, 46, 0.55); font-size: 0.55rem; font-weight: 650; }.asm-pulse-mini footer { display: flex; justify-content: space-between; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.65rem; border-top: 1px solid rgba(125, 211, 252, 0.12); color: #8fa8b9; font-size: 0.56rem; line-height: 1.35; }.asm-pulse-mini footer b { display: flex; align-items: flex-end; color: #7dd3fc; white-space: nowrap; }.asm-pulse-mini footer .material-symbols-outlined { font-size: 0.75rem; }
.asm-check-list { display: grid; gap: 0.6rem; padding: 0; margin: 0; list-style: none; }.asm-check-list li { display: flex; align-items: center; gap: 0.5rem; color: #bdd0dc; font-size: 0.8rem; }.asm-check-list .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }
.asm-action-mini { padding: 1rem; border: 1px solid rgba(125, 211, 252, 0.18); border-radius: 0.75rem; background: #101827; box-shadow: 0 18px 45px -26px rgba(0, 0, 0, 0.8); }.asm-action-mini header { display: flex; align-items: center; gap: 0.45rem; }.asm-action-mini header > .material-symbols-outlined { color: #7dd3fc; font-size: 1.15rem; }.asm-action-mini header div strong, .asm-action-mini header div span { display: block; }.asm-action-mini header div strong { color: #dcecf7; font-size: 0.7rem; }.asm-action-mini header div span { margin-top: 0.1rem; color: #7891a3; font-size: 0.56rem; }.asm-action-mini header em { margin-left: auto; color: #a8e5bf; font-size: 0.56rem; font-style: normal; font-weight: 800; }.asm-action-mini > h3 { margin: 1rem 0 0; color: #eff8fc; font-size: 1rem; }.asm-action-mini > p { margin: 0.36rem 0 0; color: #8fa8b9; font-size: 0.62rem; }
.asm-action-mini__actions { display: grid; gap: 0.4rem; margin-top: 0.8rem; }.asm-action-mini__actions label { display: flex; align-items: center; gap: 0.45rem; padding: 0.58rem; border: 1px solid rgba(125, 211, 252, 0.14); border-radius: 0.35rem; color: #c8dbe6; background: rgba(20, 28, 46, 0.55); font-size: 0.64rem; font-weight: 650; }.asm-action-mini__actions b { margin-left: auto; padding: 0.2rem 0.3rem; border: 1px solid rgba(114, 213, 155, 0.16); border-radius: 0.2rem; color: #a8e5bf; background: rgba(114, 213, 155, 0.08); font-size: 0.5rem; white-space: nowrap; }.asm-action-mini__unselected i { border-color: #587385; background: transparent; }.asm-action-mini__unselected i::after { display: none; }.asm-action-mini footer { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.8rem; color: #8fa8b9; font-size: 0.57rem; font-weight: 700; }.asm-action-mini footer button { width: auto; padding: 0.5rem 0.65rem; white-space: nowrap; }
.asm-people { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr); gap: 3rem; padding: 2rem; border: 1px solid rgba(125, 211, 252, 0.15); border-radius: 0.9rem; background: rgba(20, 28, 46, 0.42); }.asm-people__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: center; gap: 0.5rem; }.asm-people__list span { padding: 0.68rem; border: 1px solid rgba(125, 211, 252, 0.1); border-radius: 0.4rem; color: #c6dae6; background: rgba(8, 13, 24, 0.32); font-size: 0.68rem; font-weight: 650; }
@media (max-width: 800px) { .asm-people { grid-template-columns: 1fr; gap: 1.5rem; }.asm-flow { max-width: 34rem; margin: 0 auto; } }
@media (max-width: 520px) { .asm-flow__pulse, .asm-flow__approval { margin-right: 0.8rem; margin-left: 0.8rem; }.asm-friction__grid, .asm-compare, .asm-people__list { grid-template-columns: 1fr; }.asm-compare { gap: 0.65rem; }.asm-pulse-mini footer { flex-direction: column; }.asm-pulse-mini footer b { align-items: center; }.asm-action-mini footer { align-items: flex-start; flex-direction: column; }.asm-action-mini footer button { width: 100%; }.asm-people { padding: 1.25rem; } }

/* DataGlu Pulse page */
.pulse-briefing { overflow: hidden; border: 1px solid rgba(125, 211, 252, 0.22); border-radius: 1rem; background: #101827; box-shadow: 0 30px 75px -35px rgba(0, 0, 0, 0.9), 0 0 50px -27px rgba(125, 211, 252, 0.38); }
.pulse-briefing__bar { display: flex; align-items: center; gap: 0.45rem; padding: 0.85rem 1rem; border-bottom: 1px solid rgba(125, 211, 252, 0.11); color: #cde5f3; font-size: 0.68rem; font-weight: 800; }.pulse-briefing__bar > .material-symbols-outlined { color: #7dd3fc; font-size: 1rem; }.pulse-briefing__bar > span:last-child { display: flex; align-items: center; gap: 0.3rem; margin-left: auto; color: #a8e5bf; font-size: 0.57rem; }.pulse-briefing__bar i { width: 0.38rem; height: 0.38rem; border-radius: 50%; background: #72d59b; }
.pulse-briefing__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.1rem 1rem 0.8rem; }.pulse-briefing__heading p { margin: 0; color: #7891a3; font-size: 0.58rem; font-weight: 700; }.pulse-briefing__heading h2 { margin: 0.25rem 0 0; color: #eff8fc; font-size: 1.12rem; line-height: 1.2; }.pulse-briefing__heading > span { padding: 0.3rem 0.42rem; border: 1px solid rgba(125, 211, 252, 0.18); border-radius: 0.28rem; color: #b9dce9; background: rgba(125, 211, 252, 0.07); font-size: 0.57rem; font-weight: 800; white-space: nowrap; }
.pulse-briefing__metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.42rem; padding: 0 1rem 0.9rem; }.pulse-briefing__metrics > div { padding: 0.65rem; border: 1px solid rgba(125, 211, 252, 0.11); border-radius: 0.4rem; background: rgba(20, 28, 46, 0.72); }.pulse-briefing__metrics strong, .pulse-briefing__metrics span { display: block; }.pulse-briefing__metrics strong { color: #e8f6fc; font-size: 0.96rem; }.pulse-briefing__metrics span { margin-top: 0.2rem; color: #829cae; font-size: 0.53rem; line-height: 1.25; }
.pulse-briefing__insights { display: grid; gap: 0.48rem; padding: 0 1rem 1rem; }.pulse-briefing__insights article { padding: 0.72rem; border: 1px solid rgba(125, 211, 252, 0.13); border-radius: 0.45rem; background: rgba(20, 28, 46, 0.52); }.pulse-briefing__insights article > div { display: flex; gap: 0.3rem; }.pulse-tag { display: inline-flex; width: fit-content; padding: 0.19rem 0.34rem; border: 1px solid rgba(125, 211, 252, 0.16); border-radius: 0.22rem; color: #b6ddea; background: rgba(125, 211, 252, 0.08); font-size: 0.5rem; font-weight: 850; line-height: 1; }.pulse-tag--red { color: #ffc0ba; border-color: rgba(255, 107, 107, 0.2); background: rgba(255, 107, 107, 0.1); }.pulse-tag--orange { color: #ffd09c; border-color: rgba(255, 190, 92, 0.2); background: rgba(255, 190, 92, 0.1); }
.pulse-briefing__insights h3 { margin: 0.46rem 0 0; color: #e7f4fb; font-size: 0.72rem; }.pulse-briefing__insights p { margin: 0.25rem 0 0; color: #8fa8b9; font-size: 0.6rem; line-height: 1.35; }.pulse-briefing__insights footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem; margin-top: 0.52rem; color: #7891a3; font-size: 0.52rem; }.pulse-briefing__insights footer b { display: flex; align-items: center; color: #7dd3fc; white-space: nowrap; }.pulse-briefing__insights footer .material-symbols-outlined { font-size: 0.7rem; }
.pulse-workload { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; padding: 1rem; border: 1px solid rgba(255, 107, 107, 0.14); border-radius: 0.7rem; background: rgba(61, 20, 20, 0.13); }.pulse-workload span { padding: 0.72rem; border: 1px solid rgba(255, 107, 107, 0.1); border-radius: 0.4rem; color: #c9b8b6; background: rgba(20, 28, 46, 0.45); font-size: 0.7rem; font-weight: 650; line-height: 1.35; }
.pulse-step { position: relative; padding: 1.25rem; border: 1px solid rgba(125, 211, 252, 0.12); border-radius: 0.65rem; background: rgba(20, 28, 46, 0.5); }.pulse-step > span { position: absolute; top: 1rem; right: 1rem; color: #4e7187; font-size: 0.63rem; font-weight: 850; }.pulse-step__icon { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border: 1px solid rgba(125, 211, 252, 0.17); border-radius: 0.5rem; color: #7dd3fc; background: rgba(125, 211, 252, 0.08); }.pulse-step__icon .material-symbols-outlined { font-size: 1.25rem; }.pulse-step h3 { margin: 1rem 0 0; color: #e5f1f7; font-size: 1rem; }.pulse-step p { margin: 0.45rem 0 0; color: #97afbf; font-size: 0.75rem; line-height: 1.5; }
.pulse-insight { min-height: 12rem; padding: 1.1rem; border: 1px solid rgba(125, 211, 252, 0.12); border-radius: 0.6rem; background: rgba(20, 28, 46, 0.48); }.pulse-insight > strong { display: block; margin-top: 1.2rem; color: #7dd3fc; font-size: 1.02rem; }.pulse-insight h3 { margin: 0.65rem 0 0; color: #e5f1f7; font-size: 0.88rem; }.pulse-insight p { margin: 0.38rem 0 0; color: #97afbf; font-size: 0.7rem; line-height: 1.5; }
.pulse-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }.pulse-compare > div { padding: 1.2rem; border: 1px solid rgba(125, 211, 252, 0.1); border-radius: 0.6rem; background: rgba(20, 28, 46, 0.4); }.pulse-compare__active { border-color: rgba(125, 211, 252, 0.3) !important; background: rgba(14, 77, 110, 0.18) !important; }.pulse-compare__label { margin: 0; color: #b9dce9; font-size: 0.66rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }.pulse-compare ul { display: grid; gap: 0.65rem; padding: 0; margin: 1rem 0 0; list-style: none; }.pulse-compare li { display: flex; align-items: flex-start; gap: 0.45rem; color: #a2bac9; font-size: 0.72rem; line-height: 1.4; }.pulse-compare li::before { content: ""; flex: 0 0 auto; width: 0.38rem; height: 0.38rem; margin-top: 0.3rem; border-radius: 50%; background: #586f7e; }.pulse-compare__active li { color: #cee0ea; }.pulse-compare__active li::before { background: #7dd3fc; box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.09); }
.pulse-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.52rem; }.pulse-trust div { display: flex; align-items: center; gap: 0.48rem; padding: 0.75rem; border: 1px solid rgba(125, 211, 252, 0.11); border-radius: 0.42rem; color: #c3d7e3; background: rgba(20, 28, 46, 0.52); font-size: 0.69rem; font-weight: 650; }.pulse-trust .material-symbols-outlined { color: #7dd3fc; font-size: 0.92rem; }
.pulse-handoff { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr); gap: 3rem; align-items: center; }.pulse-handoff h2 { margin: 0.75rem 0 0; color: #e7f3f9; font-size: 1.8rem; line-height: 1.2; }.pulse-handoff p { margin: 0.8rem 0 0; color: #9bb3c2; line-height: 1.55; }.pulse-handoff__flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; border: 1px solid rgba(125, 211, 252, 0.15); border-radius: 0.65rem; background: rgba(20, 28, 46, 0.5); }.pulse-handoff__flow > span { padding: 0.48rem 0.6rem; border: 1px solid rgba(125, 211, 252, 0.12); border-radius: 0.32rem; color: #bdd4df; background: rgba(8, 13, 24, 0.35); font-size: 0.62rem; font-weight: 750; }.pulse-handoff__flow .pulse-handoff__pulse { color: #001f2e; border-color: #7dd3fc; background: #7dd3fc; }.pulse-handoff__flow > i { color: #7dd3fc; font-size: 0.9rem; }
@media (max-width: 800px) { .pulse-handoff { grid-template-columns: 1fr; gap: 1.5rem; } }
@media (max-width: 520px) { .pulse-briefing__metrics, .pulse-workload, .pulse-trust, .pulse-compare { grid-template-columns: 1fr; }.pulse-briefing__heading { align-items: flex-start; flex-direction: column; }.pulse-briefing__insights footer { align-items: flex-start; flex-direction: column; }.pulse-handoff h2 { font-size: 1.45rem; } }

/* Dotted connector list (data-model style) */
.spec-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(125, 211, 252, 0.08);
}
.spec-row:last-child { border-bottom: none; }

@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #1a2438; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2a3a48; }

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.is-open { max-height: 420px; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------------
   Cookie consent banner — bottom-left glass toast
   --------------------------------------------------------------------------- */
.dg-cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(380px, calc(100vw - 48px));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(15, 21, 36, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  color: #e0e8f0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.dg-cookie.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dg-cookie.is-leaving {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.dg-cookie__glow {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.28) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(6px);
}

.dg-cookie__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.22), rgba(200, 160, 240, 0.18));
  border: 1px solid rgba(125, 211, 252, 0.25);
  color: #7dd3fc;
  position: relative;
}

.dg-cookie__icon .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.dg-cookie__body {
  position: relative;
  flex: 1;
  min-width: 0;
}

.dg-cookie__title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.dg-cookie__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #a0b4c4;
  margin: 0 0 14px;
}

.dg-cookie__link {
  color: #7dd3fc;
  font-weight: 600;
  text-decoration: none;
}
.dg-cookie__link:hover { text-decoration: underline; }

.dg-cookie__actions {
  display: flex;
  gap: 8px;
}

.dg-cookie__btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.dg-cookie__btn:active { transform: scale(0.96); }

.dg-cookie__btn--primary {
  background: #7dd3fc;
  color: #001f2e;
  box-shadow: 0 8px 20px -8px rgba(125, 211, 252, 0.6);
}
.dg-cookie__btn--primary:hover { filter: brightness(1.08); }

.dg-cookie__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #e0e8f0;
  border-color: rgba(255, 255, 255, 0.1);
}
.dg-cookie__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.3);
}

.dg-cookie__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: rgba(160, 180, 196, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.dg-cookie__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e0e8f0;
}
.dg-cookie__close .material-symbols-outlined { font-size: 18px; }

@media (max-width: 480px) {
  .dg-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dg-cookie { transition: opacity 0.2s ease; transform: none; }
  .dg-cookie.is-visible { transform: none; }
  .dg-cookie.is-leaving { transform: none; }
}
