:root {
  color-scheme: light;
  --site-blue: #008ec5;
  --site-blue-strong: #006f99;
  --site-blue-soft: #d8eef7;
  --site-ink: #0f172a;
  --site-muted: #5f6b7a;
  --site-line: #d9e2ec;
  --site-surface: #f4f7fb;
  --site-surface-strong: #eef3f8;
  --site-white: #ffffff;
  --site-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --site-radius: 1.25rem;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--site-ink);
  background:
    linear-gradient(180deg, rgba(0, 142, 197, 0.08), rgba(0, 142, 197, 0) 18rem),
    linear-gradient(180deg, #ffffff, var(--site-surface));
}

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

a:hover,
a:focus {
  color: var(--site-blue-strong);
}

.site-shell {
  min-height: 100vh;
}

.border-site {
  border-color: var(--site-line) !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.navbar {
  --bs-navbar-toggler-border-color: rgba(15, 23, 42, 0.12);
  --bs-navbar-toggler-focus-width: 0.2rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 2.9rem;
  height: auto;
  object-fit: contain;
}

.brand-mark-text {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--site-white);
  background: linear-gradient(180deg, var(--site-blue), var(--site-blue-strong));
  box-shadow: 0 16px 30px rgba(0, 142, 197, 0.2);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--site-muted);
}

.nav-link-site {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--site-ink);
}

.nav-link-site:hover,
.nav-link-site:focus,
.current-menu-item > .nav-link-site,
.current-menu-item > a.nav-link-site {
  color: var(--site-blue-strong);
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 3rem;
}

.page-hero {
  --page-hero-height: clamp(35rem, 42vw, 39rem);
  padding: 0 0 3rem;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 1.5rem auto auto 58%;
  width: min(34rem, 44vw);
  height: min(34rem, 44vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.18), rgba(0, 142, 197, 0));
  pointer-events: none;
  transform: translateX(-10%);
}

.hero-copy,
.hero-panel,
.page-hero > .container-xxl {
  position: relative;
  z-index: 1;
}

.page-hero > .container-xxl {
  min-height: var(--page-hero-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(2.5rem, 5vw, 3.8rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--site-blue-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-copy h1,
.section-head h2,
.section-intro h2,
.page-hero h1,
.cta-shell h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-head h2,
.section-intro h2,
.cta-shell h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.lead,
.section-head p,
.section-intro p,
.page-intro,
.cta-shell p {
  margin: 1.5rem 0 0;
  max-width: 48rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--site-muted);
}

.lead-hero {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--site-ink);
}

.hero-actions,
.section-actions {
  margin-top: 2rem;
}

.btn-site,
.btn-outline-site,
.btn-link-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.btn-site {
  color: #ffffff;
  background: linear-gradient(180deg, var(--site-blue), var(--site-blue-strong));
  border: 1px solid var(--site-blue-strong);
  box-shadow: 0 16px 30px rgba(0, 142, 197, 0.16);
}

.btn-site:hover,
.btn-site:focus {
  color: #ffffff;
  background: linear-gradient(180deg, var(--site-blue-strong), #005f85);
}

.btn-outline-site {
  color: var(--site-ink);
  background: #ffffff;
  border: 1px solid var(--site-line);
}

.btn-outline-site:hover,
.btn-outline-site:focus {
  color: var(--site-blue-strong);
  border-color: rgba(0, 142, 197, 0.28);
  background: rgba(255, 255, 255, 0.96);
}

.btn-link-site {
  color: var(--site-blue-strong);
  padding-inline: 0;
}

.btn-link-site:hover,
.btn-link-site:focus {
  color: var(--site-ink);
}

.hero-metrics,
.process-grid,
.entry-content .content-grid,
.entry-content .project-grid,
.entry-content .contact-grid,
.entry-content .stacked-grid {
  display: grid;
  gap: 1rem;
}

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

.metric-card,
.feature-card,
.detail-card,
.project-card,
.process-step,
.entry-content .info-card,
.entry-content .contact-card,
.page-content-card,
.hero-panel .card {
  height: 100%;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: var(--site-shadow);
}

.metric-card,
.feature-card,
.detail-card,
.project-card,
.process-step,
.entry-content .info-card,
.entry-content .contact-card {
  padding: 1.45rem;
}

.metric-card strong,
.feature-card h3,
.detail-card h3,
.project-card h3,
.process-step h3,
.entry-content .info-card h3,
.entry-content .contact-card h3 {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.4;
}

.metric-card span,
.feature-card p,
.detail-card p,
.project-card p,
.process-step p,
.entry-content .info-card p,
.entry-content .contact-card p,
.panel-kicker {
  display: block;
  margin: 0.75rem 0 0;
  color: var(--site-muted);
  line-height: 1.7;
}

.feature-number,
.process-count,
.project-kicker,
.panel-kicker,
.entry-content .card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--site-blue-strong);
  background: rgba(0, 142, 197, 0.1);
  border: 1px solid rgba(0, 142, 197, 0.16);
}

.feature-card h3,
.project-card h3 {
  margin-top: 1rem;
}

.feature-topline,
.detail-card-head,
.metric-card-head,
.project-card-head,
.process-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.feature-glyph,
.detail-glyph,
.page-motion-glyph,
.metric-glyph,
.project-glyph,
.process-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--site-blue-strong);
}

.feature-glyph,
.detail-glyph,
.metric-glyph,
.project-glyph,
.process-glyph {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.22), rgba(0, 142, 197, 0.06));
  border: 1px solid rgba(0, 142, 197, 0.18);
  box-shadow: 0 22px 38px rgba(0, 142, 197, 0.18);
}

.feature-glyph svg,
.detail-glyph svg,
.page-motion-glyph svg,
.metric-glyph svg,
.project-glyph svg,
.process-glyph svg {
  width: 2rem;
  height: 2rem;
}

.feature-card,
.detail-card-visual,
.metric-card-visual,
.project-card,
.process-step {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.detail-card-visual::before,
.metric-card-visual::before,
.project-card::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.16), rgba(0, 142, 197, 0));
  pointer-events: none;
}

.feature-card::after,
.detail-card-visual::after,
.metric-card-visual::after,
.project-card::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 40%),
    linear-gradient(180deg, rgba(0, 142, 197, 0.05), rgba(0, 142, 197, 0));
  pointer-events: none;
}

.feature-card h3,
.detail-card-visual h3,
.project-card h3,
.process-step h3 {
  position: relative;
  z-index: 1;
}

.feature-card-software {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(222, 243, 250, 0.78));
}

.feature-card-portal {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 245, 250, 0.78));
}

.feature-card-data {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 241, 248, 0.8));
}

.feature-card-ops {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(228, 243, 249, 0.78));
}

.detail-card-delphi,
.detail-card-modernize {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(221, 241, 249, 0.76));
}

.detail-card-csharp,
.detail-card-ux {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 245, 250, 0.76));
}

.detail-card-database {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(222, 240, 247, 0.82));
}

.detail-card-head h3 {
  margin: 0;
}

.metric-card-head strong {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.4;
}

.metric-card span,
.project-card p,
.process-step p {
  position: relative;
  z-index: 1;
}

.surface-section,
.page-section {
  background: linear-gradient(180deg, rgba(238, 243, 248, 0.68), rgba(244, 247, 251, 0));
}

.content-section,
.page-section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-intro {
  position: sticky;
  top: 7rem;
}

.hero-panel {
  position: relative;
}

.hero-showcase {
  border-radius: calc(var(--site-radius) + 0.3rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 226, 236, 0.9);
  overflow: hidden;
}

.hero-showcase-media {
  position: relative;
  min-height: 30rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 18%, rgba(115, 230, 255, 0.2), rgba(115, 230, 255, 0) 28%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 20%),
    linear-gradient(160deg, #041d2b, #0a3448 46%, #0d6a90 100%);
}

.hero-stage-grid,
.hero-stage-beam,
.hero-stage-orbit,
.hero-stage-link,
.hero-stage-node {
  position: absolute;
  pointer-events: none;
}

.hero-stage-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  opacity: 0.36;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.92));
  animation: hero-stage-grid-shift 10s linear infinite;
}

.hero-stage-beam {
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(18px);
}

.hero-stage-beam-a {
  top: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.4), rgba(0, 210, 255, 0));
  animation: hero-stage-beam-float 12s infinite ease-in-out;
}

.hero-stage-beam-b {
  left: -14%;
  bottom: -26%;
  background: radial-gradient(circle, rgba(118, 239, 255, 0.28), rgba(118, 239, 255, 0));
  animation: hero-stage-beam-float 15s infinite ease-in-out reverse;
}

.hero-stage-orbit {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  opacity: 0.38;
}

.hero-stage-orbit-a {
  width: 18rem;
  height: 18rem;
  top: 6%;
  right: 6%;
  animation: hero-stage-orbit-spin 18s infinite linear;
}

.hero-stage-orbit-b {
  width: 10rem;
  height: 10rem;
  bottom: 14%;
  left: 10%;
  animation: hero-stage-orbit-spin 12s infinite linear reverse;
}

.hero-stage-window {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(7, 24, 35, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(5, 17, 25, 0.32);
}

.hero-stage-window-main {
  inset: 12% 12% auto 10%;
  min-height: 15rem;
  animation: hero-stage-card-float 9s infinite ease-in-out;
}

.hero-stage-window-top {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stage-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.hero-stage-window-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1.2rem 1.2rem 1.4rem;
}

.hero-stage-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-stage-bar {
  display: block;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(111, 233, 255, 0.85));
  animation: hero-stage-bar-pulse 5s infinite ease-in-out;
}

.hero-stage-bar-a {
  width: 78%;
}

.hero-stage-bar-b {
  width: 58%;
  animation-delay: 0.8s;
}

.hero-stage-bar-c {
  width: 88%;
  animation-delay: 1.6s;
}

.hero-stage-bar-d {
  width: 68%;
  animation-delay: 2.4s;
}

.hero-stage-flow {
  position: relative;
  min-height: 9rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stage-node {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #7cf0ff;
  box-shadow: 0 0 0 0 rgba(124, 240, 255, 0.45);
  animation: hero-stage-node-pulse 4.6s infinite ease-out;
}

.hero-stage-node-a {
  top: 18%;
  left: 18%;
}

.hero-stage-node-b {
  top: 30%;
  right: 18%;
  animation-delay: 1.2s;
}

.hero-stage-node-c {
  bottom: 20%;
  left: 44%;
  animation-delay: 2.2s;
}

.hero-stage-link {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(124, 240, 255, 0.9), rgba(255, 255, 255, 0));
  opacity: 0.82;
  animation: hero-stage-link-sweep 4s infinite ease-in-out;
}

.hero-stage-link-a {
  width: 7rem;
  top: 34%;
  left: 24%;
  transform: rotate(-8deg);
}

.hero-stage-link-b {
  width: 6rem;
  bottom: 30%;
  left: 38%;
  transform: rotate(18deg);
  animation-delay: 1.3s;
}

.hero-stage-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  min-width: 13rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  background: rgba(8, 27, 39, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 42px rgba(4, 18, 26, 0.26);
  animation: hero-stage-card-float 11s infinite ease-in-out;
}

.hero-stage-card strong,
.hero-stage-card span {
  display: block;
}

.hero-stage-card strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.hero-stage-card span:last-child {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hero-stage-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stage-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-stage-card-delphi {
  top: 11%;
  right: 10%;
}

.hero-stage-card-data {
  top: 48%;
  right: 8%;
  animation-delay: 1.6s;
}

.hero-stage-card-portal {
  bottom: 12%;
  left: 11%;
  animation-delay: 3.1s;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: hero-slide-rotate 18s infinite ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 22, 33, 0.1), rgba(4, 22, 33, 0.68)),
    linear-gradient(120deg, rgba(4, 22, 33, 0.55), rgba(4, 22, 33, 0.08));
}

.hero-slide-one {
  animation-delay: 0s;
}

.hero-slide-two {
  animation-delay: 6s;
}

.hero-slide-three {
  animation-delay: 12s;
}

.hero-showcase-sheen {
  position: absolute;
  inset: -20% auto auto -35%;
  width: 45%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  animation: hero-sheen 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.hero-showcase-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 1.6rem 1.6rem 1.8rem;
  color: #ffffff;
}

.hero-showcase-copy h2 {
  margin: 0.8rem 0 0;
  max-width: 26rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-showcase-copy p:last-child {
  margin-top: 0.9rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.2rem;
}

.hero-showcase-grid .detail-card {
  background: rgba(255, 255, 255, 0.88);
}

.detail-card-accent {
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.12), rgba(0, 142, 197, 0.05));
  border-color: rgba(0, 142, 197, 0.18);
}

.hero-media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.media-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  color: var(--site-blue-strong);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 142, 197, 0.14);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.media-chip span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.panel-glow {
  position: absolute;
  inset: -1.5rem -1rem auto auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 197, 0.2), rgba(0, 142, 197, 0));
  pointer-events: none;
}

.shadow-site {
  box-shadow: var(--site-shadow);
}

.page-shell {
  min-height: 70vh;
}

.page-content-card {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.page-motion-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 3rem;
}

.page-motion-band {
  --page-hero-height: clamp(36rem, 42vw, 40rem);
  position: relative;
  height: var(--page-hero-height);
  min-height: var(--page-hero-height);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(0, 142, 197, 0.35), rgba(0, 142, 197, 0) 35%),
    linear-gradient(135deg, #082434, #0a4866 55%, #0b7aaa 100%);
  isolation: isolate;
}

.page-motion-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 82% 22%, rgba(116, 231, 255, 0.14), rgba(116, 231, 255, 0) 22%),
    linear-gradient(180deg, rgba(5, 22, 32, 0.08), rgba(5, 22, 32, 0.36));
  z-index: -3;
}

.page-motion-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, rgba(8, 20, 28, 0.04), rgba(8, 20, 28, 0.28)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 10px);
  z-index: -2;
  animation: page-band-overlay-shift 16s linear infinite;
}

.page-motion-grid,
.page-motion-beam,
.page-motion-pulse {
  position: absolute;
  pointer-events: none;
}

.page-motion-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 3.25rem 3.25rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.92));
  opacity: 0.42;
  animation: page-grid-shift 11s linear infinite;
}

.page-motion-beam {
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.58;
}

.page-motion-beam-a {
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.34), rgba(0, 210, 255, 0));
  animation: beam-float 10s infinite ease-in-out;
}

.page-motion-beam-b {
  bottom: -25%;
  left: -10%;
  background: radial-gradient(circle, rgba(116, 231, 255, 0.3), rgba(116, 231, 255, 0));
  animation: beam-float 12s infinite ease-in-out reverse;
}

.page-motion-pulse {
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0.48;
}

.page-motion-pulse-a {
  top: 18%;
  right: 16%;
  animation: pulse-ring 6s infinite ease-out;
}

.page-motion-pulse-b {
  bottom: 16%;
  left: 18%;
  animation: pulse-ring 7s infinite ease-out 1.2s;
}

.page-motion-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: var(--page-hero-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-top: clamp(2.5rem, 5vw, 3.8rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-motion-titleblock {
  max-width: 50rem;
}

.page-motion-titleblock h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-motion-intro {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.76);
}

.page-motion-copy {
  max-width: 52rem;
  margin-top: 1.6rem;
}

.page-motion-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-motion-copy h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-motion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.page-motion-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.page-motion-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-motion-panel {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(8, 27, 39, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(5, 18, 27, 0.22);
  animation: motion-panel-float 8s infinite ease-in-out;
}

.page-motion-panel:nth-child(2) {
  animation-delay: 1.8s;
}

.page-motion-panel:nth-child(3) {
  animation-delay: 3.6s;
}

.page-motion-glyph {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-motion-panel h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.page-motion-panel p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.page-motion-band-leistungen {
  background:
    radial-gradient(circle at 86% 18%, rgba(136, 241, 255, 0.34), rgba(136, 241, 255, 0) 32%),
    linear-gradient(135deg, #051b27, #0a3145 50%, #0a739a 100%);
}

.page-motion-band-technologien {
  background:
    radial-gradient(circle at top right, rgba(0, 221, 255, 0.32), rgba(0, 221, 255, 0) 35%),
    linear-gradient(135deg, #061f2f, #0b3a58 52%, #006f99 100%);
}

.page-motion-band-projekte {
  background:
    radial-gradient(circle at top right, rgba(140, 229, 255, 0.28), rgba(140, 229, 255, 0) 35%),
    linear-gradient(135deg, #092737, #104f63 52%, #1885ad 100%);
}

.page-motion-band-magazin {
  background:
    radial-gradient(circle at top right, rgba(105, 234, 255, 0.28), rgba(105, 234, 255, 0) 35%),
    linear-gradient(135deg, #081f2d, #0d3b52 48%, #116989 100%);
}

.page-motion-band-magazin-data {
  background:
    radial-gradient(circle at top right, rgba(123, 242, 255, 0.34), rgba(123, 242, 255, 0) 34%),
    linear-gradient(135deg, #071c28, #0a3043 48%, #005d80 100%);
}

.page-motion-band-magazin-portal {
  background:
    radial-gradient(circle at top right, rgba(94, 223, 255, 0.3), rgba(94, 223, 255, 0) 32%),
    linear-gradient(135deg, #081f2f, #0d425b 48%, #0e7598 100%);
}

.page-motion-band-magazin-modernisierung {
  background:
    radial-gradient(circle at top right, rgba(140, 229, 255, 0.28), rgba(140, 229, 255, 0) 34%),
    linear-gradient(135deg, #091f30, #0b3850 48%, #0c6b8d 100%);
}

.page-motion-scanline {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(122, 235, 255, 0.9), rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(122, 235, 255, 0.4);
  opacity: 0.34;
  pointer-events: none;
}

.page-motion-scanline-a {
  top: 28%;
  animation: scanline-sweep 11s infinite linear;
}

.page-motion-scanline-b {
  top: 66%;
  animation: scanline-sweep 15s infinite linear reverse;
}

.page-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.scene-ring,
.scene-path,
.scene-badge {
  position: absolute;
  pointer-events: none;
}

.scene-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.38;
}

.scene-ring-a {
  width: 28rem;
  height: 28rem;
  right: -6rem;
  top: -7rem;
  animation: scene-ring-drift 9s infinite ease-in-out;
}

.scene-ring-b {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  bottom: -4rem;
  animation: scene-ring-drift 11s infinite ease-in-out reverse;
}

.scene-path {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(116, 231, 255, 0.72), rgba(255, 255, 255, 0));
  opacity: 0.52;
}

.scene-path-a {
  width: 15rem;
  top: 34%;
  right: 17%;
  transform: rotate(-14deg);
  animation: scene-path-flow 6s infinite linear;
}

.scene-path-b {
  width: 18rem;
  bottom: 24%;
  left: 20%;
  transform: rotate(18deg);
  animation: scene-path-flow 7s infinite linear reverse;
}

.scene-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(8, 27, 39, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 45px rgba(4, 18, 26, 0.22);
}

.scene-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.scene-badge-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.scene-badge-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scene-badge-a {
  top: 18%;
  right: 10%;
  animation: scene-badge-float 5.2s infinite ease-in-out;
}

.scene-badge-b {
  top: 46%;
  right: 26%;
  animation: scene-badge-float 6s infinite ease-in-out 0.7s;
}

.scene-badge-c {
  bottom: 14%;
  right: 8%;
  animation: scene-badge-float 6.8s infinite ease-in-out 1.3s;
}

.page-scene-technologien .scene-badge-a {
  top: 14%;
  right: 12%;
}

.page-scene-technologien .scene-badge-b {
  top: 42%;
  right: 30%;
}

.page-scene-technologien .scene-badge-c {
  bottom: 16%;
  right: 12%;
}

.page-scene-projekte .scene-badge-a {
  top: 16%;
  right: 12%;
}

.page-scene-projekte .scene-badge-b {
  top: 48%;
  right: 26%;
}

.page-scene-projekte .scene-badge-c {
  bottom: 16%;
  right: 10%;
}

.page-motion-band-leistungen .scene-path-a {
  width: 20rem;
  top: 22%;
  right: 28%;
  transform: rotate(-4deg);
}

.page-motion-band-leistungen .scene-path-b {
  width: 14rem;
  bottom: 18%;
  left: 18%;
  transform: rotate(26deg);
}

.page-motion-band-technologien .scene-ring {
  border-style: dashed;
}

.page-motion-band-technologien .scene-path-a {
  width: 10rem;
  top: 20%;
  right: 24%;
  transform: rotate(-34deg);
}

.page-motion-band-technologien .scene-path-b {
  width: 12rem;
  bottom: 22%;
  left: 28%;
  transform: rotate(38deg);
}

.page-motion-band-projekte .scene-path-a {
  width: 17rem;
  top: 26%;
  right: 20%;
  transform: rotate(-16deg);
}

.page-motion-band-projekte .scene-path-b {
  width: 22rem;
  bottom: 18%;
  left: 12%;
  transform: rotate(6deg);
}

.page-motion-band-magazin .scene-badge,
.page-motion-band-magazin-portal .scene-badge {
  border-radius: 999px;
}

.page-motion-band-magazin-data .scene-ring {
  border-style: dashed;
  opacity: 0.5;
}

.page-motion-band-magazin-data .scene-path {
  height: 3px;
}

.page-motion-band-magazin-modernisierung .scene-badge {
  border-radius: 1rem;
}

.page-scene-magazin .scene-badge-a,
.page-scene-magazin-data .scene-badge-a,
.page-scene-magazin-portal .scene-badge-a,
.page-scene-magazin-modernisierung .scene-badge-a {
  top: 16%;
  right: 10%;
}

.page-scene-magazin .scene-badge-b,
.page-scene-magazin-data .scene-badge-b,
.page-scene-magazin-portal .scene-badge-b,
.page-scene-magazin-modernisierung .scene-badge-b {
  top: 45%;
  right: 28%;
}

.page-scene-magazin .scene-badge-c,
.page-scene-magazin-data .scene-badge-c,
.page-scene-magazin-portal .scene-badge-c,
.page-scene-magazin-modernisierung .scene-badge-c {
  bottom: 14%;
  right: 10%;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.entry-content h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.entry-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.entry-content p,
.entry-content li {
  color: var(--site-muted);
  line-height: 1.8;
}

.entry-content section + section,
.entry-content .section-stack > section + section {
  margin-top: 3rem;
}

.entry-content .content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.entry-content .project-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.entry-content .contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.entry-content ul {
  padding-left: 1.15rem;
}

.entry-content .accent-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.entry-content .accent-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.65rem;
}

.entry-content .accent-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--site-blue);
}

.entry-content .lead-block {
  max-width: 52rem;
  font-size: 1.08rem;
}

.entry-content .cta-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--site-radius);
  background: linear-gradient(180deg, rgba(0, 142, 197, 0.08), rgba(0, 142, 197, 0.02));
  border: 1px solid rgba(0, 142, 197, 0.12);
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: calc(var(--site-radius) + 0.2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.92));
  border: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: var(--site-shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.archive-entry + .archive-entry {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--site-line);
}

.archive-entry-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.archive-entry-summary p:last-child,
.single-entry .entry-content p:last-child {
  margin-bottom: 0;
}

.archive-meta,
.single-meta {
  margin-bottom: 0.75rem;
  color: var(--site-blue-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-title {
  font-size: 1.1rem;
}

.footer-copy,
.footer-meta,
.footer-list {
  color: var(--site-muted);
}

.footer-label {
  margin: 0 0 0.75rem;
  color: var(--site-ink);
  font-weight: 700;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
}

.footer-meta {
  font-size: 0.94rem;
}

@keyframes hero-slide-rotate {
  0%,
  25% {
    opacity: 0;
    transform: scale(1);
  }

  8%,
  20% {
    opacity: 1;
    transform: scale(1.04);
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes hero-sheen {
  0%,
  100% {
    transform: translateX(0) rotate(12deg);
    opacity: 0.2;
  }

  50% {
    transform: translateX(150%) rotate(12deg);
    opacity: 0.4;
  }
}

@keyframes hero-stage-grid-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-1.75rem, -1.75rem, 0);
  }
}

@keyframes hero-stage-beam-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(5%, -4%, 0) scale(1.08);
  }
}

@keyframes hero-stage-orbit-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes hero-stage-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes hero-stage-bar-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scaleX(0.94);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes hero-stage-node-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 240, 255, 0.45);
    transform: scale(0.95);
  }

  60% {
    box-shadow: 0 0 0 0.95rem rgba(124, 240, 255, 0);
    transform: scale(1.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(124, 240, 255, 0);
    transform: scale(0.95);
  }
}

@keyframes hero-stage-link-sweep {
  0%,
  100% {
    opacity: 0.24;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.92;
    filter: brightness(1.12);
  }
}

@keyframes page-band-overlay-shift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 8rem 0, 0 0, 0 8rem;
  }
}

@keyframes page-grid-shift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-2rem, -2rem, 0);
  }
}

@keyframes beam-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(4%, -4%, 0) scale(1.08);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.82);
    opacity: 0.08;
  }

  35% {
    opacity: 0.34;
  }

  100% {
    transform: scale(1.26);
    opacity: 0;
  }
}

@keyframes motion-panel-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.4rem);
  }
}

@keyframes scanline-sweep {
  0% {
    transform: translate3d(-2%, 0, 0);
    opacity: 0.12;
  }

  15% {
    opacity: 0.5;
  }

  50% {
    transform: translate3d(2%, 0, 0);
    opacity: 0.26;
  }

  100% {
    transform: translate3d(-2%, 0, 0);
    opacity: 0.12;
  }
}

@keyframes scene-badge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.5rem, 0);
  }
}

@keyframes scene-ring-drift {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.05) translate3d(2%, -2%, 0);
  }
}

@keyframes scene-path-flow {
  0% {
    opacity: 0.18;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.72;
    filter: brightness(1.08);
  }

  100% {
    opacity: 0.18;
    filter: brightness(0.9);
  }
}

@media (max-width: 1199.98px) {
  .hero-metrics,
  .process-grid,
  .entry-content .project-grid,
  .entry-content .stacked-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-intro {
    position: static;
  }

  .page-motion-panels {
    grid-template-columns: 1fr;
    max-width: 34rem;
  }

  .scene-badge-b {
    right: 16%;
  }
}

@media (max-width: 991.98px) {
  .hero-copy h1,
  .section-head h2,
  .section-intro h2,
  .page-hero h1,
  .cta-shell h2 {
    max-width: none;
  }

  .hero-metrics,
  .entry-content .content-grid,
  .entry-content .contact-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-showcase-media {
    min-height: 27rem;
  }

  .hero-stage-window-main {
    inset: 10% 8% auto 8%;
    min-height: 13rem;
  }

  .hero-stage-card {
    min-width: 11.5rem;
    padding: 0.85rem 0.9rem;
  }

  .page-motion-band {
    --page-hero-height: 30rem;
    height: var(--page-hero-height);
    min-height: var(--page-hero-height);
  }

  .page-hero {
    --page-hero-height: 26rem;
    min-height: var(--page-hero-height);
  }

  .scene-badge {
    min-height: 4rem;
    padding: 0.75rem 0.95rem;
  }

  .scene-badge-a,
  .scene-badge-b,
  .scene-badge-c {
    right: 7%;
  }

  .scene-badge-b {
    top: 42%;
  }

  .scene-badge-c {
    bottom: 14%;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .content-section,
  .page-section {
    padding: 3.25rem 0;
  }

  .hero-section,
  .page-hero {
    padding-top: 2.5rem;
  }

  .hero-metrics,
  .process-grid,
  .entry-content .content-grid,
  .entry-content .project-grid,
  .entry-content .stacked-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase-copy {
    padding: 1.25rem;
  }

  .hero-showcase-media {
    min-height: 25rem;
  }

  .hero-stage-window-main {
    inset: 8% 6% auto 6%;
    min-height: 12rem;
  }

  .hero-stage-window-body {
    grid-template-columns: 1fr;
  }

  .hero-stage-card {
    min-width: 9.5rem;
    gap: 0.7rem;
    padding: 0.75rem 0.8rem;
  }

  .hero-stage-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-stage-card-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .hero-stage-card strong {
    font-size: 0.88rem;
  }

  .hero-stage-card span:last-child {
    font-size: 0.77rem;
  }

  .hero-showcase-grid {
    padding: 1rem;
  }

  .feature-topline,
  .detail-card-head,
  .metric-card-head,
  .project-card-head,
  .process-step-head {
    align-items: flex-start;
  }

  .page-motion-overlay {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .page-motion-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .page-motion-band,
  .page-hero {
    --page-hero-height: 28rem;
    min-height: var(--page-hero-height);
  }

  .page-motion-panels {
    margin-top: 1.2rem;
  }

  .scene-badge {
    gap: 0.65rem;
    min-height: 3.6rem;
    padding: 0.6rem 0.8rem;
  }

  .scene-badge-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .scene-badge-label {
    font-size: 0.78rem;
  }

  .scene-ring-a {
    width: 18rem;
    height: 18rem;
  }

  .scene-ring-b {
    width: 12rem;
    height: 12rem;
  }

  .page-content-card,
  .metric-card,
  .feature-card,
  .detail-card,
  .project-card,
  .process-step,
  .entry-content .info-card,
  .entry-content .contact-card {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase-sheen,
  .hero-stage-grid,
  .hero-stage-beam,
  .hero-stage-orbit,
  .hero-stage-bar,
  .hero-stage-link,
  .hero-stage-node,
  .hero-stage-card,
  .page-motion-grid,
  .page-motion-beam,
  .page-motion-pulse,
  .page-motion-panel,
  .page-motion-scanline,
  .scene-badge,
  .scene-ring,
  .scene-path {
    animation: none;
  }
}
