:root {
  color-scheme: dark;
  --bg: #06090f;
  --panel: rgba(12, 18, 29, 0.76);
  --panel-strong: rgba(17, 26, 40, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(56, 189, 248, 0.34);
  --text: #f7fbff;
  --muted: #9aa8ba;
  --soft: #cbd5e1;
  --blue: #2dd4ff;
  --green: #7ddf95;
  --gold: #f7c66a;
  --danger: #ff7f93;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(45, 212, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 80% 85%, rgba(125, 223, 149, 0.12), transparent 22rem),
    linear-gradient(145deg, #05070c 0%, #07111d 55%, #030508 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 86%);
}

button {
  font: inherit;
}

.deck-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  padding: clamp(18px, 2.2vw, 32px);
  isolation: isolate;
  overflow: hidden;
}

.topbar,
.deck-controls {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar {
  position: fixed;
  top: clamp(18px, 2.2vw, 32px);
  right: clamp(18px, 2.2vw, 32px);
  left: clamp(18px, 2.2vw, 32px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(48px, 4.8vw, 68px);
  height: clamp(48px, 4.8vw, 68px);
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  color: var(--text);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--soft);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
}

.meeting-label {
  color: var(--muted);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  white-space: nowrap;
}

.deck {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: clamp(22px, 3vw, 42px);
  max-width: 1440px;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: clamp(112px, 13vh, 140px) clamp(88px, 7vw, 116px) clamp(92px, 10vh, 116px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(38px, 0, 0) scale(0.985);
  transition:
    opacity 560ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(26px, 4vw, 72px);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
}

.hero-grid .copy-block {
  align-self: center;
  max-width: 660px;
}

.copy-block {
  max-width: 820px;
}

.copy-block.centered,
.closing {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.copy-block.compact {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.65rem, 4.35vw, 4.55rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
}

.lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.48;
}

.centered .lead,
.closing .lead {
  margin-right: auto;
  margin-left: auto;
}

.tag-row,
.start-panel,
.module-row,
.flow,
.modules-grid,
.pain-grid,
.dashboard-preview,
.security-list,
.agent-stack,
.compare-panels {
  display: grid;
  gap: 14px;
}

.tag-row {
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 16px;
}

.start-panel {
  grid-template-columns: minmax(0, auto) max-content;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 8px 8px 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.52);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.start-panel p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.start-button {
  height: 34px;
  border: 1px solid rgba(45, 212, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.18), rgba(125, 223, 149, 0.12));
  color: var(--text);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.start-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.26), rgba(125, 223, 149, 0.18));
}

.tag-row span,
.compare-panels span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
  color: #dbeafe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tag-row span {
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.visual-stage {
  position: relative;
  min-height: clamp(300px, 46vh, 390px);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(8, 13, 22, 0.62)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit-map {
  position: absolute;
  inset: 0;
}

.route-dot,
.route-line {
  position: absolute;
  display: block;
}

.route-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 26px rgba(125, 223, 149, 0.62);
  animation: pulse 2.8s ease-in-out infinite;
}

.dot-a { top: 22%; left: 18%; }
.dot-b { top: 62%; left: 38%; animation-delay: 420ms; }
.dot-c { top: 34%; left: 76%; animation-delay: 860ms; }

.route-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(45, 212, 255, 0), rgba(45, 212, 255, 0.8), rgba(125, 223, 149, 0));
}

.line-a {
  top: 28%;
  left: 20%;
  width: 42%;
  transform: rotate(24deg);
}

.line-b {
  top: 57%;
  left: 40%;
  width: 36%;
  transform: rotate(-29deg);
}

.fleet-card,
.pain-grid article,
.flow article,
.module-row article,
.modules-grid article,
.dashboard-preview article,
.security-list article,
.agent-stack article,
.compare-panels article,
.phone-mock {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.fleet-card {
  position: absolute;
  min-width: 200px;
  padding: 16px;
}

.fleet-card small,
.dashboard-preview small,
.modules-grid small,
.flow small,
.compare-panels small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-card strong {
  display: block;
  margin: 10px 0 5px;
  font-size: 1.75rem;
}

.fleet-card span,
.dashboard-preview span,
.modules-grid span,
.flow span,
.module-row span,
.pain-grid span,
.security-list span,
.agent-stack span,
.compare-panels span {
  color: var(--muted);
  line-height: 1.45;
}

.primary-card {
  top: 16%;
  right: 10%;
}

.secondary-card {
  left: 9%;
  bottom: 12%;
}

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

.pain-grid article,
.flow article,
.module-row article,
.modules-grid article,
.security-list article,
.agent-stack article {
  padding: clamp(14px, 1.6vw, 20px);
}

.pain-grid strong,
.flow strong,
.module-row strong,
.modules-grid strong,
.security-list strong,
.agent-stack strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 1.3vw, 1.24rem);
}

.flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.flow article {
  position: relative;
  overflow: hidden;
}

.flow article::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(45, 212, 255, 0.08));
}

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

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
}

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

.compare-panels article {
  padding: 24px;
}

.compare-panels .after {
  border-color: rgba(125, 223, 149, 0.36);
  background: rgba(10, 28, 23, 0.78);
}

.compare-panels span {
  display: block;
  margin-top: 10px;
  padding: 12px 14px;
  color: var(--soft);
}

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

.modules-grid article {
  min-height: 160px;
}

.modules-grid small,
.flow small {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
}

.agent-stack {
  grid-template-columns: 1fr;
}

.agent-stack article {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 18px;
}

.phone-mock {
  width: min(380px, 100%);
  min-height: 560px;
  justify-self: center;
  padding: 28px 22px;
  background:
    linear-gradient(180deg, rgba(14, 23, 37, 0.96), rgba(4, 9, 15, 0.96)),
    linear-gradient(135deg, rgba(45, 212, 255, 0.16), transparent);
}

.phone-top {
  width: 96px;
  height: 5px;
  margin: 0 auto 32px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.chat-bubble {
  width: 86%;
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.94);
  color: #dbeafe;
  line-height: 1.4;
}

.chat-bubble.accent {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.28), rgba(125, 223, 149, 0.18));
}

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

.dashboard-preview article {
  min-height: 150px;
  padding: 18px;
}

.dashboard-preview strong {
  display: block;
  margin: 10px 0 8px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1;
}

.wide-chart {
  grid-column: span 2;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 104px;
  margin-top: 20px;
}

.bar-chart span {
  display: block;
  width: 100%;
  height: var(--value);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--blue), rgba(45, 212, 255, 0.18));
}

.line-chart {
  height: 104px;
  margin-top: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 8%, rgba(125, 223, 149, 0.72) 8% 10%, transparent 10% 32%, rgba(247, 198, 106, 0.78) 32% 35%, transparent 35% 58%, rgba(45, 212, 255, 0.86) 58% 61%, transparent 61%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 26px;
}

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

.closing strong {
  display: inline-block;
  margin-top: 36px;
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.icon-button,
.control-button {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.68);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.icon-button {
  position: fixed;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.icon-button[data-prev] {
  left: clamp(18px, 2.2vw, 32px);
}

.icon-button[data-next] {
  right: clamp(18px, 2.2vw, 32px);
}

.control-button {
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.icon-button:hover,
.control-button:hover {
  border-color: var(--line-strong);
  background: rgba(15, 23, 42, 0.92);
}

.icon-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.icon-button:disabled:hover {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.68);
  transform: translateY(-50%);
}

.icon-button:hover {
  transform: translateY(-50%) scale(1.03);
}

.progress-wrap {
  position: fixed;
  bottom: clamp(22px, 2.8vw, 36px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(420px, 48vw);
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.action-controls {
  position: fixed;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(18px, 2.2vw, 32px);
  display: flex;
  gap: 10px;
}

.slide-count {
  min-width: 58px;
  white-space: nowrap;
}

.progress-track {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.18);
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 9.09%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 420ms ease;
}

body.is-fullscreen .topbar,
body.is-fullscreen .deck-controls {
  opacity: 0.86;
  transition: opacity 180ms ease;
}

body.is-fullscreen .topbar:hover,
body.is-fullscreen .deck-controls:hover {
  opacity: 1;
}

body.is-fullscreen .topbar {
  opacity: 0.48;
}

body.is-fullscreen .export-button,
body.is-fullscreen .start-panel {
  display: none;
}

@keyframes pulse {
  0%,
  100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.4); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .deck-shell {
    min-height: 100vh;
  }

  .slide-grid,
  .hero-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .visual-stage {
    min-height: 280px;
  }

  .flow,
  .module-row,
  .modules-grid,
  .dashboard-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-mock {
    min-height: 420px;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .topbar {
    top: 20px;
  }

  .slide {
    gap: 18px;
    padding-top: 116px;
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(2.5rem, 4vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(28px, 4vw, 58px);
  }

  .hero-grid .copy-block {
    max-width: 620px;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .start-panel {
    margin-top: 14px;
  }

  .tag-row {
    gap: 10px;
    margin-top: 14px;
  }

  .visual-stage {
    min-height: 310px;
  }

  .progress-wrap {
    bottom: 18px;
  }

  .action-controls {
    bottom: 14px;
  }
}

@media (max-width: 680px) {
  .deck-shell {
    min-height: 100vh;
    padding: 14px;
  }

  .meeting-label {
    display: none;
  }

  .slide {
    align-content: start;
    gap: 14px;
    overflow: hidden;
    padding: 86px 14px 70px;
  }

  h1 {
    font-size: clamp(2.12rem, 10.5vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9.4vw, 2.45rem);
  }

  h1,
  h2 {
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .lead {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  .tag-row,
  .start-panel,
  .pain-grid,
  .flow,
  .module-row,
  .modules-grid,
  .dashboard-preview,
  .security-list,
  .compare-panels {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .modules-grid,
  .dashboard-preview,
  .security-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-row {
    gap: 10px;
    margin-top: 20px;
  }

  .start-panel {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 16px;
  }

  .start-button {
    width: 100%;
  }

  .tag-row span,
  .pain-grid article,
  .flow article,
  .module-row article,
  .modules-grid article,
  .security-list article,
  .agent-stack article,
  .compare-panels article,
  .dashboard-preview article {
    padding: 10px 12px;
  }

  .pain-grid,
  .flow,
  .module-row,
  .modules-grid,
  .dashboard-preview,
  .security-list,
  .agent-stack,
  .compare-panels {
    gap: 10px;
  }

  .pain-grid strong,
  .flow strong,
  .module-row strong,
  .modules-grid strong,
  .security-list strong,
  .agent-stack strong {
    margin-bottom: 4px;
    font-size: 0.92rem;
  }

  .pain-grid span,
  .flow span,
  .module-row span,
  .modules-grid span,
  .security-list span,
  .agent-stack span,
  .compare-panels span {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .flow small,
  .modules-grid small {
    margin-bottom: 8px;
  }

  .dashboard-preview article,
  .wide-chart {
    grid-column: span 1;
  }

  .dashboard-preview strong {
    font-size: 1.75rem;
  }

  .bar-chart,
  .line-chart {
    height: 64px;
    margin-top: 10px;
  }

  .agent-stack article {
    grid-template-columns: 1fr;
  }

  .visual-stage,
  .phone-mock {
    display: none;
  }

  .progress-wrap {
    min-width: 0;
    width: min(180px, 42vw);
    flex: 1;
    gap: 8px;
  }

  .slide-count {
    min-width: 52px;
  }

  .action-controls {
    right: 14px;
    bottom: 10px;
    gap: 8px;
  }

  .control-button {
    width: 44px;
    min-width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .control-button[data-fullscreen]::before {
    color: var(--text);
    content: "⛶";
  }

  .control-button[data-export-pdf]::before {
    color: var(--text);
    content: "PDF";
    font-size: 0.78rem;
  }
}

@media print {
  @page {
    size: 13.333in 7.5in;
    margin: 0;
  }

  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    width: auto;
    height: auto;
    overflow: visible;
    background: #06090f;
  }

  body::before,
  .topbar,
  .deck-controls {
    display: none !important;
  }

  .deck-shell {
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: #06090f;
  }

  .deck {
    display: block;
    width: auto;
    height: auto;
    min-height: 0;
  }

  .slide {
    position: relative;
    inset: auto;
    display: grid;
    width: 13.333in;
    height: 7.5in;
    min-height: 7.5in;
    max-width: none;
    margin: 0;
    padding: 0.72in 0.82in;
    page-break-after: always;
    break-after: page;
    overflow: hidden;
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
    transition: none !important;
    background:
      radial-gradient(circle at 20% 15%, rgba(45, 212, 255, 0.16), transparent 4.8in),
      radial-gradient(circle at 80% 85%, rgba(125, 223, 149, 0.12), transparent 4.2in),
      linear-gradient(145deg, #05070c 0%, #07111d 55%, #030508 100%);
  }

  .slide:last-child {
    page-break-after: auto;
    break-after: auto;
  }

  .slide::before {
    position: absolute;
    top: 0.32in;
    left: 0.42in;
    z-index: 2;
    width: 0.52in;
    height: 0.52in;
    content: "";
    background: url("./logo/rota-fleet-logo-dark.png") center / contain no-repeat;
  }

  .slide::after {
    position: absolute;
    right: 0.42in;
    bottom: 0.32in;
    color: rgba(203, 213, 225, 0.72);
    content: attr(data-kicker);
    font-size: 0.105in;
    font-weight: 800;
    text-transform: uppercase;
  }

  h1 {
    font-size: 0.72in;
  }

  h2 {
    font-size: 0.56in;
  }

  .lead {
    font-size: 0.17in;
  }

  .visual-stage {
    min-height: 3.3in;
  }

  .phone-mock {
    min-height: 4.55in;
  }

  .flow,
  .module-row,
  .modules-grid,
  .dashboard-preview,
  .pain-grid,
  .security-list {
    gap: 0.12in;
  }

  .pain-grid article,
  .flow article,
  .module-row article,
  .modules-grid article,
  .dashboard-preview article,
  .security-list article,
  .agent-stack article,
  .compare-panels article {
    box-shadow: none;
  }
}
