:root {
  --bg: #031120;
  --bg-deep: #020b16;
  --panel: rgba(8, 29, 53, 0.58);
  --line: rgba(143, 218, 255, 0.22);
  --text: #ebf7ff;
  --muted: rgba(216, 239, 255, 0.74);
  --accent: #7ed7ff;
  --accent-strong: #4ea6ff;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 12%, rgba(84, 180, 255, 0.2), transparent 28%),
    radial-gradient(circle at 20% 30%, rgba(116, 226, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #07182b 0%, var(--bg) 42%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(circle at center, black 32%, transparent 85%);
  mask-image: radial-gradient(circle at center, black 32%, transparent 85%);
  pointer-events: none;
}

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

p {
  line-height: 1.72;
}

.page-shell {
  position: relative;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 56px;
}

.bg-grid,
.bg-orb {
  position: fixed;
  pointer-events: none;
}

.bg-grid {
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(120, 196, 255, 0.03) 100%),
    repeating-linear-gradient(90deg, transparent 0 98px, rgba(167, 232, 255, 0.03) 98px 99px),
    repeating-linear-gradient(transparent 0 98px, rgba(167, 232, 255, 0.03) 98px 99px);
  opacity: 0.6;
}

.bg-orb {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.18;
}

.orb-left {
  top: 140px;
  left: -120px;
  background: #2ea6ff;
}

.orb-right {
  top: 340px;
  right: -160px;
  background: #71f0ff;
}

.site-header,
.micro-card,
.metric-card,
.capability-card,
.panel-card,
.system-card,
.product-card,
.contact-card,
.contact-panel,
.contact-band,
.subpage-hero,
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(13, 38, 68, 0.9), rgba(6, 19, 34, 0.8));
  border: 1px solid rgba(172, 229, 255, 0.16);
  box-shadow: var(--shadow);
}

.site-header::before,
.micro-card::before,
.metric-card::before,
.capability-card::before,
.panel-card::before,
.system-card::before,
.product-card::before,
.contact-card::before,
.contact-panel::before,
.contact-band::before,
.subpage-hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border-radius: 0 0 24px 24px;
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(196, 237, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(123, 216, 255, 0.28) 48%, rgba(13, 54, 88, 0.9));
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    0 0 18px rgba(123, 216, 255, 0.55);
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(196, 237, 255, 0.2);
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.micro-card,
.metric-card,
.capability-card,
.panel-card,
.system-card,
.product-card,
.contact-card,
.contact-panel,
.overview-card,
.overview-list div {
  transform: translateY(var(--card-lift, 0px));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.micro-card:hover,
.metric-card:hover,
.capability-card:hover,
.panel-card:hover,
.system-card:hover,
.product-card:hover,
.contact-card:hover,
.contact-panel:hover,
.overview-card:hover,
.overview-list div:hover {
  --card-lift: -4px;
  border-color: rgba(198, 239, 255, 0.26);
}

.nav-cta,
.button-primary {
  background:
    linear-gradient(135deg, rgba(224, 247, 255, 0.94), rgba(125, 220, 255, 0.78) 42%, rgba(35, 103, 231, 0.96));
  color: #041120;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 28px rgba(81, 165, 255, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
}

.hero {
  padding: 44px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(400px, 760px) minmax(180px, 1fr);
  align-items: center;
  gap: 26px;
  min-height: calc(100vh - 180px);
}

.side-stack {
  display: grid;
  gap: 18px;
}

.micro-card,
.metric-card,
.capability-card,
.panel-card,
.system-card,
.product-card,
.contact-card,
.contact-panel {
  border-radius: var(--radius-md);
  padding: 24px;
}

.micro-card {
  backdrop-filter: blur(20px);
}

.eyebrow,
.hero-kicker,
.system-tag,
.panel-index {
  display: inline-flex;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.hero-kicker,
.system-tag {
  color: #90dafd;
  font-size: 0.72rem;
}

.micro-card strong,
.panel-card strong,
.system-card h3,
.capability-card h3,
.product-card h3,
.contact-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.12rem;
}

.micro-card p,
.hero-copy p,
.section-heading p,
.capability-card p,
.precision-copy p,
.panel-card p,
.system-card p,
.product-card p,
.contact-card p,
.subpage-copy p,
.site-footer p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.hero-center {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.hero-copy,
.subpage-copy {
  max-width: 820px;
  text-align: center;
}

.hero-kicker {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(188, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.hero-copy h1,
.subpage-copy h1,
.section-heading h2,
.precision-copy h2,
.contact-panel h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2,
.precision-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stage {
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 46%, rgba(129, 220, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(8, 28, 50, 0.92), rgba(4, 14, 26, 0.78));
  border: 1px solid rgba(182, 234, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -30px 80px rgba(2, 8, 16, 0.6),
    0 40px 120px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 26%, rgba(255, 255, 255, 0.18) 50%, transparent 70%),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.14), transparent 32%);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: sheen 7s linear infinite;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 34px;
  border: 1px solid rgba(197, 236, 255, 0.08);
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(194, 239, 255, 0.22);
  box-shadow:
    inset 0 0 24px rgba(124, 216, 255, 0.06),
    0 0 44px rgba(59, 147, 255, 0.12);
}

.ring-large {
  width: 82%;
  aspect-ratio: 1;
  animation: rotate 18s linear infinite;
  border-width: 2px;
}

.ring-small {
  width: 56%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.8;
  animation: rotateReverse 12s linear infinite;
  border-width: 2px;
}

.stage-reflection {
  position: absolute;
  width: 48%;
  height: 10%;
  bottom: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 221, 255, 0.26), transparent 66%);
  filter: blur(18px);
  z-index: 1;
}

.ampoule-visual {
  position: relative;
  z-index: 2;
  width: 46%;
  min-width: 280px;
  filter:
    drop-shadow(0 0 30px rgba(111, 205, 255, 0.35))
    drop-shadow(0 20px 50px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 60px rgba(85, 190, 255, 0.22));
  animation: float 6s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(165, 235, 255, 0.82), transparent);
  box-shadow: 0 0 24px rgba(122, 214, 255, 0.68);
  animation: scan 4s ease-in-out infinite;
}

.spec {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(193, 236, 255, 0.16);
  background: rgba(8, 25, 45, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: rgba(227, 247, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 28px rgba(4, 14, 26, 0.22);
}

.spec-top {
  top: 8%;
}

.spec-right {
  right: 6%;
  top: 52%;
  transform: rotate(90deg);
  transform-origin: center;
}

.spec-bottom {
  bottom: 8%;
}

.hero-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(173, 230, 255, 0.12);
  color: rgba(223, 244, 255, 0.78);
  background: rgba(255, 255, 255, 0.03);
}

.section-block {
  margin-top: 34px;
}

.overview-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}

.overview-card,
.overview-list div {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(7, 28, 52, 0.92), rgba(5, 18, 32, 0.82));
  border: 1px solid rgba(175, 233, 255, 0.16);
  box-shadow: var(--shadow);
}

.overview-card h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.overview-card p,
.overview-list div {
  color: var(--muted);
}

.overview-list {
  display: grid;
  gap: 18px;
}

.overview-list div {
  display: flex;
  align-items: center;
  min-height: 110px;
}

.metrics,
.capability-grid,
.product-grid,
.contact-grid,
.contact-list,
.spec-grid {
  display: grid;
  gap: 18px;
}

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

.metric-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.metric-value {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metric-label {
  margin-top: 10px;
  color: var(--muted);
}

.capabilities,
.precision,
.contact-band,
.subpage-hero {
  padding: 38px;
  border-radius: var(--radius-lg);
}

.section-heading {
  max-width: 860px;
}

.capability-grid,
.product-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.product-preview,
.contact-layout,
.capability-showcase,
.about-preview,
.detail-layout,
.story-layout {
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(7, 28, 52, 0.92), rgba(5, 18, 32, 0.82));
  border: 1px solid rgba(175, 233, 255, 0.16);
  box-shadow: var(--shadow);
}

.product-card {
  min-height: 250px;
}

.product-card-large {
  grid-column: span 2;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 8px;
}

.precision {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.precision-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.panel-card {
  min-height: 200px;
}

.panel-index {
  font-size: 2rem;
  color: rgba(135, 220, 255, 0.22);
}

.system {
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(7, 28, 52, 0.92), rgba(5, 18, 32, 0.82));
  border: 1px solid rgba(175, 233, 255, 0.16);
  box-shadow: var(--shadow);
}

.system-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.wide {
  grid-row: span 2;
  min-height: 458px;
}

.contact-grid {
  margin-top: 26px;
}

.contact-card a {
  color: var(--text);
}

.subpage-hero {
  margin-top: 34px;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.subpage-copy p {
  max-width: 760px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.detail-layout,
.story-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
}

.contact-list {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.timeline-item {
  padding: 18px 0;
  border-top: 1px solid rgba(183, 228, 255, 0.12);
}

.timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-item strong {
  display: block;
  margin-bottom: 10px;
}

.spec-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.spec-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(178, 228, 255, 0.1);
}

.spec-grid strong {
  display: block;
  font-size: 1.5rem;
}

.spec-grid span {
  color: var(--muted);
}

.stats-row,
.detail-meta,
.scenario-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.stats-row,
.detail-meta,
.scenario-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-visual {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.detail-visual .hero-stage {
  width: 100%;
  aspect-ratio: 1 / 1.02;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.process-card {
  min-height: 220px;
}

.site-footer {
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.reveal-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

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

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scan {
  0% {
    top: 18%;
    opacity: 0;
  }

  15%,
  85% {
    opacity: 1;
  }

  100% {
    top: 82%;
    opacity: 0;
  }
}

@keyframes sheen {
  from {
    transform: translateX(-22%);
  }

  to {
    transform: translateX(22%);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .overview-band,
  .precision,
  .system-grid,
  .contact-layout,
  .detail-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .hero-stage {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .wide,
  .product-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 20px, 1440px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    justify-items: stretch;
    border-radius: 0 0 24px 24px;
    padding: 16px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
      linear-gradient(135deg, rgba(13, 38, 68, 0.96), rgba(6, 19, 34, 0.92));
    border: 1px solid rgba(172, 229, 255, 0.16);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .metrics,
  .capability-grid,
  .product-grid,
  .contact-grid,
  .contact-list,
  .precision-panel,
  .spec-grid,
  .stats-row,
  .detail-meta,
  .scenario-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 24px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

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

  .hero-copy h1,
  .subpage-copy h1 {
    line-height: 1.04;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-stage {
    aspect-ratio: 0.88 / 1;
    border-radius: 28px;
  }

  .ampoule-visual {
    width: 60%;
    min-width: 220px;
  }

  .spec-right {
    right: -34px;
  }

  .capabilities,
  .system,
  .precision,
  .contact-band,
  .subpage-hero,
  .overview-card,
  .overview-list div,
  .product-preview,
  .contact-layout,
  .capability-showcase,
  .about-preview,
  .detail-layout,
  .story-layout {
    padding: 28px 20px;
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-card {
    opacity: 1;
    transform: none;
  }

  .micro-card,
  .metric-card,
  .capability-card,
  .panel-card,
  .system-card,
  .product-card,
  .contact-card,
  .contact-panel,
  .overview-card,
  .overview-list div {
    transform: none;
  }
}
