:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: rgba(15, 15, 18, 0.82);
  --panel-strong: #111115;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f2f2;
  --muted: #b9b2b2;
  --red: #d81f26;
  --red-bright: #ff4048;
  --red-soft: rgba(216, 31, 38, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 31, 38, 0.24), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(255, 64, 72, 0.18), transparent 18%),
    linear-gradient(180deg, #050505 0%, #08080a 40%, #060607 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 76, 83, 0.09), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(255, 76, 83, 0.08), transparent 16%),
    radial-gradient(circle at 78% 72%, rgba(255, 76, 83, 0.07), transparent 18%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 240px;
  left: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 60px rgba(255, 74, 80, 0.05);
}

.site-shell::after {
  top: 920px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transform: rotate(18deg);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar.scrolled {
  padding: 0.8rem 1rem;
  margin-top: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 8, 10, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.topbar-cta {
  box-shadow: 0 18px 34px rgba(216, 31, 38, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  padding: 0.18rem;
  background: linear-gradient(145deg, rgba(255, 74, 80, 0.28), rgba(143, 13, 18, 0.5));
  box-shadow: 0 12px 28px rgba(216, 31, 38, 0.4);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.6rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.18rem;
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 71, 79, 0.15), rgba(255, 102, 109, 0.95), rgba(255, 71, 79, 0.15));
  transform: scaleX(0.22);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff1f2;
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(255, 82, 90, 0.22);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 14px rgba(255, 82, 90, 0.32);
}

.nav a:focus-visible {
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.03);
}

.button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.button-solid {
  background: linear-gradient(135deg, var(--red-bright), #a10f14);
  box-shadow: 0 16px 32px rgba(216, 31, 38, 0.28);
  position: relative;
  overflow: hidden;
}

.button-solid:hover,
.button-solid:focus-visible {
  box-shadow: 0 20px 38px rgba(216, 31, 38, 0.36);
}

.button-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.26) 50%, transparent 80%);
  transform: translateX(-140%);
}

.button-outline,
.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover,
.button-outline:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 102, 109, 0.32);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 28px rgba(7, 7, 10, 0.24);
}

.hero {
  --pointer-x: 0px;
  --pointer-y: 0px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 2rem;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #ff7a80;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.feature-panel p,
.cta-copy p,
.service-card p,
.feature-list p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  margin: 1.3rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #e2d6d6;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}

.highlight-card {
  position: relative;
  padding: 1.1rem 1rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 14, 0.95);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%);
  pointer-events: none;
}

.highlight-card strong,
.highlight-card small {
  display: block;
}

.highlight-card strong {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.highlight-card small {
  color: var(--muted);
  line-height: 1.6;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-bottom: 0.9rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, rgba(255, 81, 88, 0.96), rgba(120, 15, 20, 0.94));
  box-shadow: 0 14px 26px rgba(216, 31, 38, 0.22);
  position: relative;
}

.highlight-icon::before,
.highlight-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
}

.icon-response::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 12px;
  left: 12px;
}

.icon-response::after {
  width: 16px;
  height: 3px;
  border-radius: 999px;
  right: 10px;
  bottom: 13px;
  transform: rotate(-35deg);
}

.icon-security::before {
  width: 22px;
  height: 24px;
  top: 11px;
  left: 14px;
  clip-path: polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
}

.icon-security::after {
  width: 10px;
  height: 3px;
  border-radius: 999px;
  left: 20px;
  bottom: 11px;
}

.icon-structure::before {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  top: 14px;
  left: 13px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.92), 0 18px 0 rgba(255, 255, 255, 0.92);
}

.icon-structure::after {
  width: 4px;
  height: 24px;
  border-radius: 999px;
  top: 13px;
  right: 12px;
}

.hero-visual {
  position: relative;
  min-height: 820px;
  height: 100%;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 50% 50%, rgba(216, 31, 38, 0.34), rgba(216, 31, 38, 0) 58%);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0%, rgba(255, 255, 255, 0.03) 48%, transparent 100%);
  opacity: 0.8;
}

.mobile-dashboard-stack {
  display: none;
}

.command-dashboard {
  position: absolute;
  inset: 1.1% 1.2% 1.3%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(8, 8, 11, 0.97)),
    rgba(6, 6, 8, 0.9);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  z-index: 2;
  overflow: hidden;
}

.command-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.dashboard-grid,
.dashboard-ambient,
.dashboard-scanline,
.dashboard-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dashboard-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 100%);
  opacity: 0.58;
}

.dashboard-ambient {
  filter: blur(24px);
  opacity: 0.8;
}

.dashboard-ambient-one {
  inset: 8% auto auto 8%;
  width: 36%;
  height: 32%;
  background: radial-gradient(circle, rgba(171, 17, 28, 0.26), rgba(171, 17, 28, 0));
}

.dashboard-ambient-two {
  inset: auto 6% 12% auto;
  width: 40%;
  height: 34%;
  background: radial-gradient(circle, rgba(255, 101, 109, 0.18), rgba(255, 101, 109, 0));
}

.dashboard-header,
.dashboard-body,
.dashboard-footer {
  position: relative;
  z-index: 1;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0.2rem 0;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dashboard-title small,
.dashboard-title strong,
.dashboard-region,
.dashboard-time,
.dashboard-panel-head span,
.dashboard-rotating-label,
.stack-label,
.dashboard-footer-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-title small,
.dashboard-region,
.dashboard-time,
.dashboard-panel-head span,
.dashboard-rotating-label,
.stack-label,
.dashboard-footer-label {
  color: #bfb4b4;
  font-size: 0.72rem;
}

.dashboard-title strong {
  color: #f8f0f0;
  font-size: 1rem;
}

.dashboard-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f65;
  box-shadow: 0 0 0 8px rgba(255, 95, 101, 0.12);
}

.dashboard-header-meta {
  display: grid;
  justify-items: start;
  min-width: 9.5rem;
  gap: 0.3rem;
  text-align: left;
}

.dashboard-time {
  color: #e8dddd;
}

.dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.92fr);
  gap: 1.1rem;
  min-height: 0;
}

.dashboard-column {
  display: grid;
  gap: 1rem;
  min-height: 0;
}

.dashboard-column-main {
  grid-template-rows: auto minmax(180px, 0.72fr);
  gap: 1.35rem;
}

.dashboard-column-side {
  grid-template-rows: auto minmax(0, 1fr);
}

.dashboard-row {
  display: grid;
  gap: 1rem;
}

.dashboard-row-bottom {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  margin-top: 0.15rem;
}

.dashboard-panel,
.dashboard-footer-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 12, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.dashboard-panel::before,
.dashboard-footer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.045) 48%, transparent 100%);
  transform: translateX(-140%);
  pointer-events: none;
}

.dashboard-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem 0;
}

.dashboard-panel-head strong,
.dashboard-rotating-copy strong,
.stack-card strong,
.screen-mini-copy strong {
  color: #f7ecec;
}

.dashboard-panel-head strong {
  max-width: 24ch;
  font-size: 1.15rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.dashboard-panel-head.compact strong {
  font-size: 0.96rem;
}

.dashboard-panel-hero {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding-bottom: 0.65rem;
}

.dashboard-rotating-copy {
  position: relative;
  z-index: 1;
  padding: 0.8rem 1.2rem 0;
}

.dashboard-rotating-copy strong {
  min-height: 1.5em;
  font-size: 1.05rem;
  line-height: 1.3;
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
}

.dashboard-rotating-copy strong.is-switching {
  opacity: 0;
  transform: translateY(8px);
}

.dashboard-status-stream {
  position: relative;
  z-index: 1;
  margin: 0.9rem 1.2rem 0;
  padding: 0.85rem 1rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 13, 0.68);
  overflow: hidden;
}

.dashboard-status-stream::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 95, 103, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: stream-sheen 4.6s ease-in-out infinite;
}

.status-stream-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: #c7baba;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-stream-track {
  position: relative;
  min-height: 56px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(7, 7, 10, 0.72);
  overflow: hidden;
}

.status-stream-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
}

.status-stream-line,
.status-stream-node,
.status-stream-pulse,
.stack-card {
  position: relative;
}

.status-stream-line,
.status-stream-node,
.status-stream-pulse {
  position: absolute;
}

.status-stream-line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 97, 104, 0.06), rgba(255, 97, 104, 0.48), rgba(255, 97, 104, 0.12));
  opacity: 0.75;
}

.status-stream-line-a {
  top: 22px;
  left: 12%;
  width: 32%;
  transform: rotate(11deg);
}

.status-stream-line-b {
  top: 30px;
  left: 34%;
  width: 24%;
  transform: rotate(-13deg);
}

.status-stream-line-c {
  top: 24px;
  right: 12%;
  width: 26%;
  transform: rotate(14deg);
}

.status-stream-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7278;
  box-shadow: 0 0 0 8px rgba(255, 114, 120, 0.08);
}

.status-stream-node-a {
  top: 18px;
  left: 18%;
  animation: stream-node-pulse 3.8s ease-in-out infinite;
}

.status-stream-node-b {
  top: 27px;
  left: 45%;
  background: #ffe8e8;
  box-shadow: 0 0 0 8px rgba(255, 232, 232, 0.08);
  animation: stream-node-pulse 3.8s ease-in-out 0.8s infinite;
}

.status-stream-node-c {
  top: 19px;
  right: 18%;
  animation: stream-node-pulse 3.8s ease-in-out 1.4s infinite;
}

.status-stream-pulse {
  top: 18px;
  left: 10%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 128, 0.95) 0%, rgba(255, 122, 128, 0.18) 52%, transparent 72%);
  filter: blur(0.2px);
  animation: stream-pulse-travel 4.2s cubic-bezier(0.4, 0.05, 0.2, 0.95) infinite;
}

.stack-card {
  overflow: hidden;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
  transform: translateX(-140%);
}

.dashboard-line-zone {
  position: relative;
  margin: 0.9rem 1.2rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(12, 12, 15, 0.74);
  overflow: hidden;
}

.dashboard-line-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
}

.dashboard-line-chart {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.dashboard-line-chart polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-line-chart-primary {
  stroke: #ff646b;
  stroke-width: 4;
  filter: drop-shadow(0 0 18px rgba(255, 100, 107, 0.26));
}

.dashboard-line-chart-secondary {
  stroke: rgba(255, 100, 107, 0.36);
  stroke-width: 2.5;
}

.line-chart-glow,
.line-chart-scan,
.line-chart-point {
  position: absolute;
}

.line-chart-glow {
  inset: 0;
  background: radial-gradient(circle at 56% 48%, rgba(255, 94, 101, 0.14), transparent 34%);
}

.line-chart-scan {
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 94, 101, 0.12) 46%, transparent 100%);
  transform: translateX(-130%);
}

.line-chart-point {
  width: 14px;
  height: 14px;
  z-index: 2;
  border-radius: 50%;
  background: #ffd5d6;
  box-shadow:
    0 0 0 6px rgba(255, 108, 114, 0.12),
    0 0 18px rgba(255, 108, 114, 0.42);
}

.line-chart-point::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 130, 136, 0.18);
}

.line-chart-point-a {
  top: 26%;
  left: 58%;
}

.line-chart-point-b {
  top: 19%;
  left: 77%;
  width: 10px;
  height: 10px;
}

.dashboard-panel-network,
.dashboard-panel-metrics,
.dashboard-panel-radar {
  min-height: 0;
}

.network-map {
  position: relative;
  min-height: 150px;
  margin: 0.95rem 1.1rem 1.1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 91, 97, 0.08), transparent 48%),
    rgba(12, 12, 15, 0.7);
}

.network-line,
.network-node,
.network-pulse {
  position: absolute;
}

.network-line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 95, 101, 0.36), rgba(255, 255, 255, 0.1));
}

.line-a {
  top: 35%;
  left: 18%;
  width: 46%;
  transform: rotate(14deg);
}

.line-b {
  top: 54%;
  left: 24%;
  width: 38%;
  transform: rotate(-18deg);
}

.line-c {
  top: 68%;
  left: 46%;
  width: 24%;
  transform: rotate(16deg);
}

.network-node,
.radar-blip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff666d;
  box-shadow: 0 0 0 8px rgba(255, 102, 109, 0.1);
}

.network-node-a { top: 30%; left: 16%; }
.network-node-b { top: 42%; left: 56%; }
.network-node-c { top: 60%; left: 26%; }
.network-node-d { top: 74%; left: 67%; }

.network-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 149, 153, 0.94);
  box-shadow: 0 0 12px rgba(255, 149, 153, 0.65);
}

.pulse-a { top: 33%; left: 40%; }
.pulse-b { top: 56%; left: 45%; }
.pulse-c { top: 71%; left: 58%; }

.metric-bars {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0.7rem;
  min-height: 118px;
  margin: 0.7rem 1.1rem 1.1rem;
  padding: 0 0.2rem;
}

.metric-bars span {
  flex: 1;
  height: var(--bar-height);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 98, 104, 1), rgba(121, 14, 19, 0.32));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: height 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.metrics-chart-zone {
  position: relative;
  min-height: 94px;
  margin: 0.9rem 1.1rem 0.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(12, 12, 15, 0.74);
  overflow: hidden;
}

.metrics-chart-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}

.metrics-chart {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.metrics-chart polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics-chart-primary {
  stroke: #ff676e;
  stroke-width: 3.4;
  filter: drop-shadow(0 0 12px rgba(255, 103, 110, 0.24));
}

.metrics-chart-secondary {
  stroke: rgba(255, 103, 110, 0.32);
  stroke-width: 2;
}

.metrics-chart-point,
.metrics-chart-scan {
  position: absolute;
}

.metrics-chart-point {
  width: 10px;
  height: 10px;
  z-index: 2;
  border-radius: 50%;
  background: #ffe1e2;
  box-shadow:
    0 0 0 6px rgba(255, 117, 123, 0.12),
    0 0 14px rgba(255, 117, 123, 0.28);
}

.metrics-chart-point-a {
  top: 35%;
  left: 58%;
}

.metrics-chart-point-b {
  top: 24%;
  left: 80%;
  width: 8px;
  height: 8px;
}

.metrics-chart-scan {
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 108, 0.12) 48%, transparent 100%);
  transform: translateX(-130%);
}

.dashboard-panel-radar {
  display: grid;
  grid-template-rows: auto 1fr;
}

.radar-display {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 1.1rem auto 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(255, 92, 99, 0.08), rgba(8, 8, 10, 0.9) 62%),
    rgba(8, 8, 10, 0.84);
  overflow: hidden;
  box-shadow:
    inset 0 0 42px rgba(255, 88, 95, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.16);
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-ring-outer { inset: 10%; }
.radar-ring-middle { inset: 28%; }
.radar-ring-inner { inset: 44%; }

.radar-cross {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.radar-cross-x {
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  transform: translateX(-50%);
}

.radar-cross-y {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  transform: translateY(-50%);
}

.radar-sweep-beam {
  position: absolute;
  inset: -18%;
  background: conic-gradient(from 90deg, transparent 0deg, transparent 316deg, rgba(255, 96, 103, 0.52) 344deg, rgba(255, 96, 103, 0.1) 360deg);
  filter: blur(1px);
}

.radar-blip-a { top: 24%; left: 62%; }
.radar-blip-b { top: 58%; left: 34%; }
.radar-blip-c { top: 68%; left: 70%; }

.dashboard-panel-stack {
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  padding: 1.1rem;
  min-height: 0;
  height: 100%;
}

.stack-carousel {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 100%;
  --stack-gap: 0.8rem;
  --stack-pill-height: 62px;
}

.stack-viewport {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: 0.15rem 0;
  overflow: hidden;
}

.stack-viewport::before,
.stack-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}

.stack-viewport::before {
  top: 0;
  background: linear-gradient(180deg, rgba(17, 17, 21, 0.96), rgba(17, 17, 21, 0));
}

.stack-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(17, 17, 21, 0.96), rgba(17, 17, 21, 0));
}

.stack-track {
  display: flex;
  flex-direction: column;
  gap: var(--stack-gap);
  transform: translateY(0);
  will-change: transform;
}

.stack-track.is-animating {
  transition: transform 880ms cubic-bezier(0.32, 0.06, 0.18, 0.98);
}

.stack-pill {
  min-height: var(--stack-pill-height);
  display: flex;
  align-items: center;
  padding: 0 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(20, 20, 24, 0.78);
  color: #ebe3e3;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.16);
  opacity: 0.58;
  transform: scale(0.985);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.stack-pill-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 104, 111, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 101, 108, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(22, 22, 26, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(255, 96, 103, 0.08);
}

.stack-panel-glow,
.dashboard-footer-status-glow {
  position: absolute;
  inset: auto 10% 10% 10%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 96, 103, 0.14), rgba(255, 96, 103, 0));
  filter: blur(26px);
  pointer-events: none;
}

.stack-label {
  margin-bottom: 0.5rem;
}

.dashboard-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.dashboard-footer-panel {
  padding: 1rem 1.05rem;
}

.dashboard-footer-service,
.dashboard-footer-rhythm {
  position: relative;
  min-height: 152px;
  margin-top: 0.8rem;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}

.dashboard-footer-service {
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 88, 95, 0.1), transparent 20%),
    radial-gradient(circle at 82% 50%, rgba(255, 88, 95, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.97), rgba(16, 10, 13, 0.9));
}

.dashboard-footer-rhythm {
  background:
    radial-gradient(circle at 50% 64%, rgba(255, 88, 95, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.97), rgba(16, 10, 13, 0.9));
}

.service-pulse-grid,
.service-noise,
.service-ambient,
.service-lanes,
.service-lane,
.service-terminal,
.service-pulse,
.rhythm-grid,
.rhythm-glow,
.rhythm-path,
.rhythm-line,
.rhythm-stage,
.rhythm-halo,
.rhythm-signal {
  position: absolute;
  pointer-events: none;
}

.service-pulse-grid,
.service-noise,
.rhythm-grid {
  inset: 0;
}

.service-pulse-grid,
.rhythm-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 86%);
}

.service-noise {
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.045) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.04) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 74%, rgba(255, 255, 255, 0.03) 0 1px, transparent 2px);
  opacity: 0.18;
}

.service-ambient {
  inset: auto 12% 20% 12%;
  height: 48%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 88, 95, 0.16), rgba(255, 88, 95, 0));
  filter: blur(24px);
  opacity: 0.56;
  animation: service-ambient-breathe 6.2s ease-in-out infinite;
}

.service-globe-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.service-globe-svg,
.service-globe-ring,
.service-globe-spot-ring {
  position: absolute;
  pointer-events: none;
}

.service-globe-svg {
  width: 86%;
  height: 86%;
  overflow: visible;
  filter: drop-shadow(0 0 22px rgba(255, 88, 95, 0.14));
}

.service-globe-shell {
  fill: rgba(10, 10, 14, 0.94);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2;
}

.service-globe-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.2;
}

.service-globe-grid-vertical {
  transform-origin: center;
  animation: service-globe-grid-drift 4.4s linear infinite;
}

.service-globe-grid-vertical-b {
  animation-duration: 5.8s;
  animation-direction: reverse;
}

.service-globe-land {
  fill: rgba(255, 255, 255, 0.065);
}

.service-globe-continents {
  transform-origin: center;
  animation: service-globe-land-drift 6.6s ease-in-out infinite;
}

.service-globe-canada {
  fill: rgba(255, 94, 101, 0.94);
  stroke: rgba(255, 215, 218, 0.3);
  stroke-width: 1.3;
  filter: drop-shadow(0 0 18px rgba(255, 94, 101, 0.28));
  animation: service-globe-canada-pulse 2.6s ease-in-out infinite;
}

.service-globe-spot {
  fill: #fff5f5;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.service-globe-spot-ring {
  fill: none;
  stroke: rgba(255, 96, 103, 0.45);
  stroke-width: 2;
  transform-origin: center;
  animation: service-globe-ring-pulse 2.8s ease-out infinite;
}

.service-globe-ring {
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.22;
}

.service-globe-ring-a {
  transform: scale(0.88);
  animation: service-globe-outer-ring 6.2s ease-in-out infinite;
}

.service-globe-ring-b {
  inset: 8%;
  opacity: 0.12;
  animation: service-globe-outer-ring 7.4s ease-in-out 1.2s infinite;
}

.service-lanes {
  inset: 0;
}

.service-lane {
  left: 10%;
  right: 14%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 112, 118, 0.2), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.service-lane-a { top: 24%; }
.service-lane-b { top: 40%; }
.service-lane-c { top: 56%; }
.service-lane-d { top: 72%; }

.service-terminal {
  right: 12%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 111, 117, 0.32);
  box-shadow: 0 0 18px rgba(255, 88, 95, 0.18);
}

.service-terminal-a { top: calc(24% - 4px); animation: service-terminal-glow 6.4s ease-in-out infinite; }
.service-terminal-b { top: calc(40% - 4px); animation: service-terminal-glow 6.8s ease-in-out 0.6s infinite; }
.service-terminal-c { top: calc(56% - 4px); animation: service-terminal-glow 6s ease-in-out 1.1s infinite; }
.service-terminal-d { top: calc(72% - 4px); animation: service-terminal-glow 7.2s ease-in-out 1.8s infinite; }

.service-pulse {
  left: 10%;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 111, 117, 0), rgba(255, 111, 117, 0.92), rgba(255, 226, 227, 0.72), rgba(255, 111, 117, 0));
  filter: blur(0.4px);
  opacity: 0;
}

.service-pulse-a { top: calc(24% - 4px); animation: service-pulse-run 4.6s cubic-bezier(0.34, 0.08, 0.2, 0.98) infinite; }
.service-pulse-b { top: calc(40% - 4px); animation: service-pulse-run 5.1s cubic-bezier(0.34, 0.08, 0.2, 0.98) 0.9s infinite; }
.service-pulse-c { top: calc(56% - 4px); animation: service-pulse-run 4.8s cubic-bezier(0.34, 0.08, 0.2, 0.98) 1.5s infinite; }
.service-pulse-d { top: calc(72% - 4px); animation: service-pulse-run 5.4s cubic-bezier(0.34, 0.08, 0.2, 0.98) 0.45s infinite; }

.rhythm-glow {
  inset: auto 18% 16% 18%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 88, 95, 0.14), rgba(255, 88, 95, 0));
  filter: blur(24px);
  opacity: 0.5;
}

.rhythm-path {
  position: absolute;
  inset: 0;
}

.rhythm-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 108, 115, 0.26), rgba(255, 255, 255, 0.04));
  transform-origin: left center;
}

.rhythm-line-a {
  top: 50%;
  left: 19%;
  width: 28%;
  transform: rotate(8deg);
}

.rhythm-line-b {
  top: 48%;
  left: 47%;
  width: 26%;
  transform: rotate(-9deg);
}

.rhythm-stage,
.rhythm-halo,
.rhythm-signal {
  border-radius: 50%;
}

.rhythm-stage {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fcebec 0%, #ff8a90 42%, #c91f27 74%, #7a0f14 100%);
  box-shadow: 0 0 0 8px rgba(255, 103, 110, 0.08);
}

.rhythm-stage-a { top: calc(50% - 6px); left: 18%; animation: rhythm-stage-activate 4.8s ease-in-out infinite; }
.rhythm-stage-b { top: calc(56% - 6px); left: 46%; animation: rhythm-stage-activate 4.8s ease-in-out 1.2s infinite; }
.rhythm-stage-c { top: calc(42% - 6px); left: 74%; animation: rhythm-stage-activate 4.8s ease-in-out 2.4s infinite; }

.rhythm-halo {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 111, 117, 0.16);
  opacity: 0;
}

.rhythm-halo-a { top: calc(50% - 15px); left: calc(18% - 9px); animation: rhythm-halo-bloom 4.8s ease-out infinite; }
.rhythm-halo-b { top: calc(56% - 15px); left: calc(46% - 9px); animation: rhythm-halo-bloom 4.8s ease-out 1.2s infinite; }
.rhythm-halo-c { top: calc(42% - 15px); left: calc(74% - 9px); animation: rhythm-halo-bloom 4.8s ease-out 2.4s infinite; }

.rhythm-signal {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fff6f6 0%, #ff9ea3 45%, rgba(255, 110, 117, 0.2) 100%);
  box-shadow:
    0 0 18px rgba(255, 124, 129, 0.4),
    0 0 32px rgba(255, 88, 95, 0.18);
  top: calc(50% - 5px);
  left: calc(18% - 5px);
  animation: rhythm-signal-route 4.8s cubic-bezier(0.34, 0.08, 0.2, 0.98) infinite;
}

@keyframes stream-sheen {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 0.35;
  }
  55% {
    transform: translateX(100%);
    opacity: 0.48;
  }
  75% {
    opacity: 0;
  }
}

@keyframes stream-node-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 114, 120, 0.08);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 14px rgba(255, 114, 120, 0.04);
  }
}

@keyframes stream-pulse-travel {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  35% {
    transform: translate3d(140px, 10px, 0) scale(1);
  }
  62% {
    transform: translate3d(250px, -4px, 0) scale(0.9);
  }
  100% {
    transform: translate3d(370px, 6px, 0) scale(0.72);
    opacity: 0;
  }
}

@keyframes service-ambient-breathe {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.66;
  }
}

@keyframes service-terminal-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.28;
    box-shadow: 0 0 18px rgba(255, 88, 95, 0.12);
  }
  50% {
    transform: scale(1.15);
    opacity: 0.76;
    box-shadow: 0 0 26px rgba(255, 88, 95, 0.28);
  }
}

@keyframes service-pulse-run {
  0%,
  100% {
    transform: translateX(0) scaleX(0.72);
    opacity: 0;
  }
  10% {
    opacity: 0.88;
  }
  50% {
    transform: translateX(110px) scaleX(1);
    opacity: 0.98;
  }
  100% {
    transform: translateX(220px) scaleX(0.76);
    opacity: 0;
  }
}

@keyframes service-globe-grid-drift {
  0% {
    transform: translateX(-8px) scaleX(0.92);
    opacity: 0.7;
  }
  50% {
    transform: translateX(8px) scaleX(1.02);
    opacity: 0.95;
  }
  100% {
    transform: translateX(-8px) scaleX(0.92);
    opacity: 0.7;
  }
}

@keyframes service-globe-land-drift {
  0% {
    transform: translateX(-12px) scaleX(0.94);
  }
  50% {
    transform: translateX(12px) scaleX(1.02);
  }
  100% {
    transform: translateX(-12px) scaleX(0.94);
  }
}

@keyframes service-globe-canada-pulse {
  0%,
  100% {
    opacity: 0.88;
    filter: drop-shadow(0 0 14px rgba(255, 94, 101, 0.22));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 24px rgba(255, 94, 101, 0.42));
  }
}

@keyframes service-globe-ring-pulse {
  0% {
    transform: scale(0.75);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

@keyframes service-globe-outer-ring {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.12;
  }
  50% {
    transform: scale(1);
    opacity: 0.28;
  }
}

@keyframes rhythm-stage-activate {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 103, 110, 0.08);
  }
  18%,
  28% {
    transform: scale(1.22);
    box-shadow: 0 0 0 14px rgba(255, 103, 110, 0.04), 0 0 24px rgba(255, 88, 95, 0.18);
  }
}

@keyframes rhythm-halo-bloom {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0;
  }
  16% {
    opacity: 0.42;
  }
  36% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes rhythm-signal-route {
  0%,
  12% {
    top: calc(50% - 5px);
    left: calc(18% - 5px);
    opacity: 0.92;
  }
  38% {
    top: calc(56% - 5px);
    left: calc(46% - 5px);
    opacity: 1;
  }
  68% {
    top: calc(42% - 5px);
    left: calc(74% - 5px);
    opacity: 0.98;
  }
  100% {
    top: calc(42% - 5px);
    left: calc(74% - 5px);
    opacity: 0;
  }
}

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

  .dashboard-column-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .dashboard-panel-head strong {
    max-width: none;
  }
}

.dashboard-scanline {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 48%, rgba(255, 92, 99, 0.08) 50%, rgba(255, 255, 255, 0.02) 52%, transparent 100%);
  opacity: 0.5;
  transform: translateY(-100%);
}

.dashboard-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 152, 157, 0.5);
  box-shadow: 0 0 10px rgba(255, 152, 157, 0.4);
}

.dashboard-particles span:nth-child(1) { top: 20%; left: 40%; }
.dashboard-particles span:nth-child(2) { top: 30%; right: 12%; }
.dashboard-particles span:nth-child(3) { top: 56%; left: 14%; }
.dashboard-particles span:nth-child(4) { top: 62%; right: 28%; }
.dashboard-particles span:nth-child(5) { bottom: 18%; left: 44%; }
.dashboard-particles span:nth-child(6) { bottom: 26%; right: 10%; }

.hero-video-stage {
  position: absolute;
  inset: 4% 5% 24%;
  padding: 1rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  z-index: 2;
  will-change: transform;
}

.video-stage-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: #e5dddd;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-stage-topbar strong {
  margin-left: 0.25rem;
  font-weight: 600;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.video-dot:first-child {
  background: #ff666b;
}

.video-stage-screen {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 98, 104, 0.18), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 98, 104, 0.13), transparent 22%),
    radial-gradient(circle at 70% 72%, rgba(255, 98, 104, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.96), rgba(8, 8, 10, 0.98));
}

.video-stage-copy {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 2;
  width: min(52%, 360px);
}

.video-stage-copy small,
.video-stage-copy strong,
.video-stage-copy p {
  display: block;
}

.video-stage-copy small {
  margin-bottom: 0.9rem;
  color: rgba(233, 220, 220, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-stage-copy strong {
  color: #fff4f4;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.08;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.video-stage-copy p {
  margin-top: 0.9rem;
  max-width: 32ch;
  color: rgba(226, 214, 214, 0.86);
  line-height: 1.6;
}

.video-stage-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 93, 99, 0.12), transparent 22%),
    radial-gradient(circle at 20% 72%, rgba(255, 93, 99, 0.09), transparent 26%);
}

.video-stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.video-stage-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 86, 92, 0.18) 50%, transparent 82%);
  transform: translateX(-140%);
}

.video-stage-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.26) 100%);
}

.video-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-trace path {
  fill: none;
  stroke: #ff646b;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(255, 100, 107, 0.38));
}

.video-trace-secondary path {
  stroke: rgba(255, 100, 107, 0.45);
  stroke-width: 3;
}

.stage-bars {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 174px;
  height: 116px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.stage-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 90, 96, 0.98), rgba(135, 17, 22, 0.36));
}

.stage-bars span:nth-child(1) { height: 30%; }
.stage-bars span:nth-child(2) { height: 44%; }
.stage-bars span:nth-child(3) { height: 58%; }
.stage-bars span:nth-child(4) { height: 76%; }
.stage-bars span:nth-child(5) { height: 94%; }

.stage-radar {
  position: absolute;
  right: 40px;
  top: 168px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-ring-two {
  inset: 28%;
}

.radar-sweep {
  position: absolute;
  inset: -14%;
  background: conic-gradient(from 180deg, transparent 0deg, transparent 300deg, rgba(255, 93, 99, 0.45) 338deg, rgba(255, 93, 99, 0.12) 360deg);
}

.stage-flag-badge {
  position: absolute;
  right: 30px;
  top: 26px;
  left: auto;
  width: 174px;
  padding: 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.66);
}

.stage-flag-badge span {
  display: block;
  margin-bottom: 0.55rem;
  color: #dfd5d5;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5b61;
  box-shadow: 0 0 0 8px rgba(255, 91, 97, 0.12);
}

.node-one {
  top: 38%;
  left: 18%;
}

.node-two {
  top: 50%;
  left: 58%;
}

.node-three {
  bottom: 22%;
  right: 24%;
}

.flag-wave {
  height: 52px;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.flag-wave i {
  display: block;
}

.flag-wave i:nth-child(1),
.flag-wave i:nth-child(3) {
  background: linear-gradient(180deg, #ef4046, #a51217);
}

.flag-wave i:nth-child(2) {
  background:
    linear-gradient(180deg, #f7f4f4, #ded7d7);
  position: relative;
}

.flag-wave i:nth-child(2)::after {
  content: "";
  position: absolute;
  inset: 9px 16px;
  background: #d81f26;
  clip-path: polygon(50% 0%, 60% 22%, 82% 18%, 72% 36%, 92% 46%, 70% 54%, 78% 78%, 56% 68%, 50% 100%, 44% 68%, 22% 78%, 30% 54%, 8% 46%, 28% 36%, 18% 18%, 40% 22%);
}

.growth-bars {
  height: 42px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.growth-bars i {
  flex: 1;
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 93, 99, 0.95), rgba(118, 14, 18, 0.34));
}

.growth-bars i:nth-child(1) { height: 30%; }
.growth-bars i:nth-child(2) { height: 48%; }
.growth-bars i:nth-child(3) { height: 66%; }
.growth-bars i:nth-child(4) { height: 92%; }

.node-four {
  top: 58%;
  left: 74%;
}

.signal-stage {
  position: absolute;
  inset: auto 5% 4% 5%;
  height: 16%;
  display: grid;
  grid-template-columns: 0.88fr 1.52fr;
  gap: 1rem;
  z-index: 3;
}

.signal-screen {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.72);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.signal-screen-main {
  min-height: 100%;
}

.signal-screen-side {
  min-height: 100%;
}

.screen-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #d7cfcf;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-status-row {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 68%;
}

.screen-status-row span {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e3d6d6;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screen-flag-wave {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 2.6rem;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.screen-flag-wave i {
  display: block;
}

.screen-flag-wave i:nth-child(1),
.screen-flag-wave i:nth-child(3) {
  background: linear-gradient(180deg, #ef4046, #a51217);
}

.screen-flag-wave i:nth-child(2) {
  background: linear-gradient(180deg, #f7f4f4, #ded7d7);
  position: relative;
}

.screen-flag-wave i:nth-child(2)::after {
  content: "";
  position: absolute;
  inset: 7px 12px;
  background: #d81f26;
  clip-path: polygon(50% 0%, 60% 22%, 82% 18%, 72% 36%, 92% 46%, 70% 54%, 78% 78%, 56% 68%, 50% 100%, 44% 68%, 22% 78%, 30% 54%, 8% 46%, 28% 36%, 18% 18%, 40% 22%);
}

.screen-mini-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
}

.screen-mini-copy strong,
.screen-mini-copy small {
  display: block;
}

.screen-mini-copy strong {
  margin-bottom: 0.4rem;
  color: #f3ebeb;
  font-size: 0.94rem;
}

.screen-mini-copy small {
  color: #cbbebe;
  line-height: 1.45;
}

.screen-bars {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 58%;
  display: flex;
  align-items: end;
  gap: 0.55rem;
}

.screen-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 89, 95, 0.92), rgba(150, 17, 23, 0.38));
}

.screen-bars span:nth-child(1) { height: 36%; }
.screen-bars span:nth-child(2) { height: 72%; }
.screen-bars span:nth-child(3) { height: 48%; }
.screen-bars span:nth-child(4) { height: 84%; }
.screen-bars span:nth-child(5) { height: 58%; }
.screen-bars span:nth-child(6) { height: 92%; }

.screen-wave {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.2rem;
  height: 44%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 65%, rgba(255, 82, 88, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 24% 35%, rgba(255, 82, 88, 0.85) 0 10%, transparent 11%),
    radial-gradient(circle at 40% 60%, rgba(255, 82, 88, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 56% 38%, rgba(255, 82, 88, 0.85) 0 10%, transparent 11%),
    radial-gradient(circle at 72% 58%, rgba(255, 82, 88, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 88% 42%, rgba(255, 82, 88, 0.85) 0 10%, transparent 11%);
}

.hero-logo-badge {
  position: absolute;
  top: 7%;
  left: 8%;
  width: 92px;
  height: 92px;
  padding: 0.7rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 12, 0.54);
  backdrop-filter: blur(14px);
  z-index: 2;
  transform: translate3d(calc(var(--pointer-x) * -0.35), calc(var(--pointer-y) * -0.35), 0);
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-glow {
  position: absolute;
  inset: 24% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 31, 38, 0.22), rgba(216, 31, 38, 0) 68%);
  filter: blur(18px);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 76%);
}

.trust-strip,
.feature-section,
.cta-section {
  margin-top: 1.8rem;
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 16, 19, 0.92), rgba(9, 9, 11, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.trust-strip p {
  margin: 0;
  max-width: 34rem;
  color: #ddd4d4;
}

.security-tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.82fr);
  grid-auto-rows: minmax(220px, auto);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.security-tools-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: 1.7rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(26, 22, 27, 0.96), rgba(13, 12, 16, 0.98)),
    radial-gradient(circle at top right, rgba(200, 39, 39, 0.16), transparent 55%);
  box-shadow: 0 24px 50px rgba(3, 3, 7, 0.38);
  overflow: hidden;
}

.security-tools-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

.security-tools-card p {
  margin: 0;
  color: rgba(235, 226, 228, 0.78);
  line-height: 1.75;
}

.security-tools-card-feature {
  grid-row: span 2;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 1.8rem;
  min-height: 100%;
}

.security-tools-visual {
  position: relative;
  min-height: 280px;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.92), rgba(15, 13, 18, 0.96)),
    radial-gradient(circle at center, rgba(218, 64, 64, 0.18), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.security-tools-visual::before,
.security-tools-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.security-tools-visual::before {
  inset: 10% 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-tools-visual::after {
  inset: 24% 28%;
  border: 1px solid rgba(255, 118, 118, 0.16);
}

.security-orbit,
.security-node,
.security-sweep {
  position: absolute;
}

.security-orbit {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transform-origin: center;
}

.security-orbit-a {
  inset: 18% 16%;
  animation: orbitSpinA 12s linear infinite;
}

.security-orbit-b {
  inset: 28% 26%;
  animation: orbitSpinB 10s linear infinite;
}

.security-orbit-c {
  inset: 38% 36%;
  animation: orbitSpinA 8s linear infinite reverse;
}

.security-node {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9b9b, #ff5f5f);
  box-shadow: 0 0 0 0 rgba(255, 106, 106, 0.35);
  animation: nodePulse 3.2s ease-in-out infinite;
}

.security-node-a { top: 20%; left: 66%; }
.security-node-b { top: 42%; left: 76%; animation-delay: 0.6s; }
.security-node-c { top: 61%; left: 60%; animation-delay: 1.1s; }
.security-node-d { top: 52%; left: 30%; animation-delay: 1.8s; }

.security-sweep {
  inset: 14% 12%;
  border-radius: 50%;
  background: conic-gradient(from 35deg, rgba(255, 91, 91, 0.34), transparent 24%, transparent 100%);
  filter: blur(2px);
  animation: orbitSweep 7s linear infinite;
}

.security-tools-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 1.15rem;
}

.security-tools-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 0.8rem;
}

.section-end-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.35rem;
  padding-top: 0.25rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(100%, 560px);
}

.stats article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

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

.section {
  position: relative;
  padding: 5.5rem 0 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 4.1rem;
  right: 0;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  transform: rotate(18deg);
  opacity: 0.65;
  pointer-events: none;
}

.section:nth-of-type(even)::after {
  content: "";
  position: absolute;
  left: -32px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 32px rgba(255, 88, 94, 0.04);
  pointer-events: none;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 1.3rem;
  background: linear-gradient(90deg, rgba(255, 87, 93, 0.95), rgba(255, 87, 93, 0));
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.service-grid,
.feature-list,
.process-grid,
.promise-grid,
.foundation-grid,
.faq-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card,
.feature-list article,
.process-card,
.promise-card,
.foundation-card,
.faq-card,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 13, 15, 0.96);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.service-card h3,
.feature-list h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.service-card:hover,
.feature-list article:hover,
.process-card:hover,
.promise-card:hover,
.foundation-card:hover,
.faq-card:hover,
.industry-grid span:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 64, 72, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.3rem;
  align-items: start;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  align-items: start;
}

.feature-panel {
  min-width: 0;
}

.feature-list article {
  min-width: 0;
  height: 100%;
}

.industries .section-heading {
  margin-bottom: 1.3rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.industry-grid span {
  padding: 1.1rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: #e4dbdb;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

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

.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.3rem;
  align-items: stretch;
}

.process-chart,
.cinematic-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(11, 11, 13, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-chart {
  min-height: 420px;
  padding: 2rem;
}

.chart-node {
  position: absolute;
  width: 132px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(17, 17, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.chart-node span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 64, 72, 0.95), rgba(129, 15, 20, 0.9));
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.chart-node strong {
  display: block;
  line-height: 1.2;
}

.chart-node-1 { top: 9%; left: 8%; }
.chart-node-2 { top: 28%; right: 10%; }
.chart-node-3 { bottom: 21%; left: 16%; }
.chart-node-4 { bottom: 8%; right: 18%; }

.chart-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 64, 72, 0.18), rgba(255, 64, 72, 0.8), rgba(255, 64, 72, 0.18));
  transform-origin: left center;
}

.chart-line-a {
  top: 26%;
  left: 30%;
  width: 46%;
  transform: rotate(18deg);
}

.chart-line-b {
  top: 53%;
  left: 28%;
  width: 30%;
  transform: rotate(64deg);
}

.chart-line-c {
  bottom: 19%;
  left: 39%;
  width: 34%;
  transform: rotate(-14deg);
}

.chart-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff585e;
  box-shadow: 0 0 0 8px rgba(255, 88, 94, 0.12);
}

.chart-pulse-a { top: 37%; left: 57%; }
.chart-pulse-b { bottom: 24%; left: 47%; }

.chart-runner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff2f2;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.chart-runner-a {
  top: 25.4%;
  left: 30%;
}

.chart-runner-b {
  top: 52.3%;
  left: 28%;
}

.chart-runner-c {
  bottom: 18.2%;
  left: 39%;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1.2rem;
}

.cinematic-card {
  padding: 1.5rem;
}

.cinematic-card-wide {
  min-height: 340px;
}

.cinematic-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #ff9ca0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cinematic-card h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.cinematic-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cinematic-display {
  position: relative;
  min-height: 220px;
  margin-top: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 8, 10, 0.7);
  overflow: hidden;
}

.display-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.display-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 15%, rgba(255, 93, 99, 0.15) 48%, transparent 82%);
  transform: translateX(-130%);
}

.display-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 101, 107, 0.25);
}

.orbit-one {
  inset: 18% 22%;
}

.orbit-two {
  inset: 32% 34%;
}

.cinematic-meters {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.cinematic-meters span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 67, 74, 0.95), rgba(255, 67, 74, 0.32)),
    rgba(255, 255, 255, 0.03);
}

.cinematic-meters span:nth-child(1) { width: 88%; }
.cinematic-meters span:nth-child(2) { width: 68%; }
.cinematic-meters span:nth-child(3) { width: 92%; }
.cinematic-meters span:nth-child(4) { width: 74%; }
.cinematic-meters span:nth-child(5) { width: 82%; }

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

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

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff2f2;
  background: linear-gradient(135deg, rgba(255, 64, 72, 0.92), rgba(130, 13, 18, 0.92));
  box-shadow: 0 14px 28px rgba(216, 31, 38, 0.2);
}

.process-card h3,
.promise-card h3,
.foundation-card h3,
.faq-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.process-card p,
.promise-card p,
.foundation-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: start;
  padding-bottom: 2rem;
}

.contact-card {
  display: grid;
  gap: 0.85rem;
  align-self: start;
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
  color: #e8dfdf;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
}

.contact-card textarea {
  margin-top: 0.1rem;
}

.contact-card .button {
  margin-top: 0.35rem;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(255, 64, 72, 0.65);
  box-shadow: 0 0 0 3px rgba(216, 31, 38, 0.16);
}

.form-status {
  display: block;
  margin: 0;
  color: #c9c0c0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.contact-card .button + .form-status:not(:empty) {
  margin-top: 0.2rem;
}

.form-status[data-state="success"] {
  color: #cfe9d4;
}

.form-status[data-state="error"] {
  color: #ffb3b6;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-summary {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.contact-summary p {
  margin: 0;
}

.contact-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f2e7e8;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.contact-summary-pill:hover,
.contact-summary-pill:focus-visible {
  color: #fff4f5;
  border-color: rgba(255, 85, 92, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-detail-card {
  min-width: 0;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.4rem;
  min-height: 100%;
}

.contact-detail-top {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 94, 101, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 30% 28%, rgba(255, 102, 109, 0.18), transparent 50%),
    rgba(15, 15, 18, 0.95);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #ff858c;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-detail-kicker {
  color: #d8cccc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail-card h3 {
  margin: 0;
  font-size: clamp(1.34rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.contact-detail-card p,
.contact-detail-card address {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-style: normal;
}

.contact-detail-card address span {
  display: block;
}

.contact-detail-secondary {
  color: #e0d1d1;
}

.contact-detail-card a {
  color: #f3ebeb;
}

.contact-detail-card a:hover,
.contact-detail-card a:focus-visible {
  color: #fff7f7;
  text-shadow: 0 0 18px rgba(255, 96, 103, 0.18);
}

.contact-social-block {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.45rem;
}

.contact-social-heading {
  color: #d8cccc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f6eded;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 85, 92, 0.45);
  background: rgba(255, 85, 92, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.contact-page-support-note {
  max-width: 58rem;
}

.contact-map-visual {
  overflow: hidden;
}

.contact-map-visual .visual-orb {
  display: none;
}

.contact-map-stage {
  position: absolute;
  inset: 4.8%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 94, 101, 0.16), transparent 24%),
    radial-gradient(circle at 72% 58%, rgba(255, 94, 101, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(12, 12, 16, 0.92);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-stage-chip {
  top: 1.35rem;
  left: 1.35rem;
  z-index: 3;
}

.contact-map-glow,
.contact-map-sweep,
.contact-map-signal,
.contact-map-card,
.contact-map-marker,
.contact-map-svg {
  position: absolute;
}

.contact-map-glow {
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 94, 101, 0.14), transparent 18%),
    radial-gradient(circle at 78% 66%, rgba(255, 94, 101, 0.2), transparent 26%);
  filter: blur(18px);
  animation: contact-map-glow-shift 7.2s ease-in-out infinite;
}

.contact-map-svg {
  inset: 4.5rem 1.2rem 1.15rem 1.2rem;
  width: calc(100% - 2.4rem);
  height: calc(100% - 5.65rem);
  z-index: 1;
}

.contact-map-roads {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-road {
  stroke: rgba(255, 245, 245, 0.14);
  stroke-width: 3;
}

.road-a,
.road-b,
.road-c {
  stroke-width: 4;
}

.road-a,
.road-f {
  animation: contact-road-glow-a 4.6s ease-in-out infinite;
}

.road-b,
.road-e {
  animation: contact-road-glow-b 5.2s ease-in-out infinite;
}

.road-c,
.road-d,
.road-g {
  animation: contact-road-glow-c 5.9s ease-in-out infinite;
}

.contact-map-node {
  fill: #ff767d;
  filter: drop-shadow(0 0 14px rgba(255, 102, 109, 0.4));
  animation: contact-node-breathe 3.2s ease-in-out infinite;
}

.node-b { animation-delay: 0.35s; }
.node-c { animation-delay: 0.7s; }
.node-d { animation-delay: 1.05s; }
.node-e { animation-delay: 1.4s; }

.contact-map-ping {
  fill: none;
  stroke: rgba(255, 107, 114, 0.38);
  stroke-width: 2;
  opacity: 0;
}

.ping-a {
  animation: contact-map-ping-wave 3.8s ease-out infinite;
}

.ping-b {
  animation: contact-map-ping-wave 3.8s ease-out 1.6s infinite;
}

.contact-map-signal {
  inset: 0;
  z-index: 2;
}

.contact-signal-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 86, 93, 0.05), rgba(255, 86, 93, 0.74), rgba(255, 86, 93, 0.12));
  transform-origin: left center;
  opacity: 0.72;
}

.signal-line-a {
  top: 34%;
  left: 20%;
  width: 24%;
  transform: rotate(-11deg);
}

.signal-line-b {
  top: 47%;
  left: 42%;
  width: 20%;
  transform: rotate(14deg);
}

.signal-line-c {
  top: 61%;
  left: 49%;
  width: 18%;
  transform: rotate(-18deg);
}

.contact-signal-runner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff1f1;
  box-shadow:
    0 0 0 8px rgba(255, 102, 109, 0.14),
    0 0 20px rgba(255, 102, 109, 0.2);
}

.signal-runner-a {
  animation: contact-runner-a 4.8s cubic-bezier(0.45, 0.08, 0.18, 0.96) infinite;
}

.signal-runner-b {
  animation: contact-runner-b 5s cubic-bezier(0.45, 0.08, 0.18, 0.96) 0.8s infinite;
}

.signal-runner-c {
  animation: contact-runner-c 5.2s cubic-bezier(0.45, 0.08, 0.18, 0.96) 1.4s infinite;
}

.contact-map-marker {
  right: 12%;
  top: 27%;
  width: 154px;
  height: 154px;
  z-index: 3;
}

.contact-map-marker-label {
  position: absolute;
  top: -0.2rem;
  right: 0;
  color: #f5eaea;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-map-marker-core,
.contact-map-marker-ring {
  position: absolute;
  border-radius: 50%;
}

.contact-map-marker-core {
  top: 56%;
  left: 58%;
  width: 18px;
  height: 18px;
  background: #ff6168;
  box-shadow: 0 0 0 12px rgba(255, 97, 104, 0.1);
  transform: translate(-50%, -50%);
  animation: contact-core-pulse 3.4s ease-in-out infinite;
}

.contact-map-marker-ring {
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: center;
}

.ring-one {
  animation: contact-ring-orbit 7s linear infinite;
}

.ring-two {
  inset: 50px;
  animation: contact-ring-orbit 5.4s linear infinite reverse;
}

.ring-three {
  inset: 68px;
  animation: contact-ring-orbit 4.2s linear infinite;
}

.contact-map-card {
  width: 190px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(14, 14, 18, 0.86);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  z-index: 3;
  overflow: hidden;
}

.contact-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.07) 48%, transparent 100%);
  transform: translateX(-140%);
  animation: contact-card-sheen 4.6s ease-in-out infinite;
}

.contact-map-card-top {
  left: 8%;
  bottom: 18%;
  animation: contact-card-float-a 6s ease-in-out infinite;
}

.contact-map-card-bottom {
  right: 9%;
  bottom: 10%;
  width: 206px;
  animation: contact-card-float-b 6.8s ease-in-out infinite;
}

.contact-map-card-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0.8rem;
  color: #dfd1d1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-map-card-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.contact-map-card-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 86, 93, 0.48), rgba(255, 255, 255, 0.06));
}

.contact-map-card-lines span:nth-child(1) {
  width: 72%;
  animation: contact-line-rail 2.5s ease-in-out infinite;
}

.contact-map-card-lines span:nth-child(2) {
  width: 100%;
  animation: contact-line-rail 2.5s ease-in-out 0.2s infinite;
}

.contact-map-card-lines span:nth-child(3) {
  width: 84%;
  animation: contact-line-rail 2.5s ease-in-out 0.4s infinite;
}

.contact-map-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 0.65rem;
  min-height: 76px;
}

.contact-map-bars span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 103, 110, 0.98), rgba(126, 15, 19, 0.34));
  transform-origin: center bottom;
}

.contact-map-bars span:nth-child(1) { height: 28%; animation: contact-bar-rise 1.9s ease-in-out infinite; }
.contact-map-bars span:nth-child(2) { height: 52%; animation: contact-bar-rise 1.9s ease-in-out 0.12s infinite; }
.contact-map-bars span:nth-child(3) { height: 78%; animation: contact-bar-rise 1.9s ease-in-out 0.24s infinite; }
.contact-map-bars span:nth-child(4) { height: 60%; animation: contact-bar-rise 1.9s ease-in-out 0.36s infinite; }

.contact-map-sweep {
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, transparent 0%, rgba(255, 98, 104, 0.13) 45%, transparent 66%);
  transform: translateX(-130%);
  animation: contact-map-sweep-pass 5.6s linear infinite;
}

@keyframes contact-map-glow-shift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate3d(12px, -10px, 0) scale(1.04); opacity: 1; }
}

@keyframes contact-road-glow-a {
  0%, 100% { stroke: rgba(255, 245, 245, 0.14); }
  50% { stroke: rgba(255, 99, 106, 0.38); }
}

@keyframes contact-road-glow-b {
  0%, 100% { stroke: rgba(255, 245, 245, 0.12); }
  50% { stroke: rgba(255, 99, 106, 0.28); }
}

@keyframes contact-road-glow-c {
  0%, 100% { stroke: rgba(255, 245, 245, 0.1); }
  50% { stroke: rgba(255, 99, 106, 0.22); }
}

@keyframes contact-node-breathe {
  0%, 100% { transform: scale(1); opacity: 0.86; }
  50% { transform: scale(1.24); opacity: 1; }
}

@keyframes contact-map-ping-wave {
  0% { opacity: 0; transform: scale(0.65); }
  20% { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.7); }
}

@keyframes contact-runner-a {
  0% { top: 32%; left: 20%; opacity: 0; }
  12% { opacity: 1; }
  40% { top: 37%; left: 38%; opacity: 1; }
  70% { top: 47%; left: 53%; opacity: 1; }
  100% { top: 58%; left: 67%; opacity: 0; }
}

@keyframes contact-runner-b {
  0% { top: 47%; left: 43%; opacity: 0; }
  14% { opacity: 1; }
  48% { top: 41%; left: 55%; opacity: 1; }
  82% { top: 30%; left: 67%; opacity: 1; }
  100% { top: 27%; left: 74%; opacity: 0; }
}

@keyframes contact-runner-c {
  0% { top: 60%; left: 49%; opacity: 0; }
  14% { opacity: 1; }
  50% { top: 54%; left: 59%; opacity: 1; }
  84% { top: 46%; left: 70%; opacity: 1; }
  100% { top: 40%; left: 80%; opacity: 0; }
}

@keyframes contact-core-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 12px rgba(255, 97, 104, 0.1); }
  50% { transform: translate(-50%, -50%) scale(1.14); box-shadow: 0 0 0 20px rgba(255, 97, 104, 0.06); }
}

@keyframes contact-ring-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes contact-card-sheen {
  0%, 55%, 100% { transform: translateX(-140%); }
  72% { transform: translateX(140%); }
}

@keyframes contact-card-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes contact-card-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

@keyframes contact-line-rail {
  0%, 100% { opacity: 0.72; transform: scaleX(0.94); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes contact-bar-rise {
  0%, 100% { transform: scaleY(0.88); filter: brightness(0.96); }
  50% { transform: scaleY(1.06); filter: brightness(1.08); }
}

@keyframes contact-map-sweep-pass {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.contact-intro-card {
  align-content: start;
}

.contact-intro-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.contact-intro-points span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #ece3e3;
  position: relative;
}

.contact-intro-points span::before {
  content: "";
  position: absolute;
  left: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 91, 98, 0.98), rgba(150, 16, 25, 0.94));
  box-shadow: 0 0 0 8px rgba(255, 88, 94, 0.12);
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: #ff8b90;
  font-weight: 600;
}

.service-link:hover,
.service-link:focus-visible {
  color: #ffd6d8;
  text-shadow: 0 0 16px rgba(255, 82, 90, 0.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1.5rem, 2.8vw, 2.8rem);
  margin-top: 5rem;
  padding: 1.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
  flex: 0 1 29rem;
  min-width: 0;
}

.footer-company {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f6efef;
}

.site-footer p {
  margin: 0;
  max-width: 27rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-legal {
  color: rgba(221, 214, 214, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.78rem;
  white-space: nowrap;
  align-content: center;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ddd6d6;
  font-size: 0.94rem;
  padding-bottom: 0.18rem;
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 71, 79, 0.15), rgba(255, 102, 109, 0.95), rgba(255, 71, 79, 0.15));
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff1f2;
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(255, 82, 90, 0.22);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 14px rgba(255, 82, 90, 0.32);
}

.footer-links a:focus-visible {
  outline: none;
}

.page-hero {
  --pointer-x: 0px;
  --pointer-y: 0px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.6rem;
  align-items: start;
  padding: 2.15rem 0 0.6rem;
}

.page-hero-article {
  padding-top: 4.35rem;
}

.page-hero-article .page-hero-copy {
  padding-top: 0.45rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #c5bebe;
  font-size: 0.92rem;
}

.breadcrumbs span {
  color: #8f8787;
}

.page-hero-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.page-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.page-visual {
  --page-accent: rgba(255, 88, 94, 0.28);
  --page-grid-speed: 12s;
  --page-scan-speed: 5.8s;
  --page-orb-float-speed: 5.8s;
  --page-orb-breathe-speed: 4.2s;
  --page-panel-float-speed: 4.8s;
  --page-panel-breathe-speed: 5.8s;
  --page-ring-speed: 7.4s;
  --page-ring-breathe-speed: 2.9s;
  --page-bar-speed: 2.15s;
  --page-sheen-speed: 7.6s;
  --page-glow-speed: 6.2s;
  --page-aurora-speed: 7.8s;
  --page-orb-right: 12%;
  --page-orb-top: 16%;
  position: relative;
  min-height: 456px;
  margin-top: 0.18rem;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 88, 94, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(15, 15, 18, 0.96), rgba(8, 8, 10, 0.96));
  box-shadow: var(--shadow);
}

.page-visual-location-detail {
  min-height: 640px;
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: -12% -8% auto 0;
  height: 72%;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 88, 94, 0.13), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(255, 88, 94, 0.15), transparent 24%),
    linear-gradient(135deg, transparent 18%, rgba(255, 88, 94, 0.06) 42%, transparent 72%);
  filter: blur(22px);
  opacity: 0.82;
  pointer-events: none;
  animation: visual-aurora var(--page-aurora-speed) ease-in-out infinite;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.82;
}

.visual-grid::after {
  content: "";
  position: absolute;
  inset: -18% 0 auto;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 94, 101, 0), rgba(255, 94, 101, 0.11), rgba(255, 94, 101, 0));
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.visual-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  right: var(--page-orb-right);
  top: var(--page-orb-top);
  border-radius: 50%;
  background: radial-gradient(circle, var(--page-accent), rgba(255, 89, 95, 0) 68%);
  filter: blur(16px);
  opacity: 0.9;
  z-index: 1;
}

.visual-panel {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  z-index: 2;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: auto -16% -24% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 88, 94, 0.18), rgba(255, 88, 94, 0) 68%);
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
}

.visual-panel-main {
  left: 10%;
  bottom: 14%;
  width: 58%;
  min-height: 142px;
  padding: 1rem;
}

.visual-panel-main > *,
.visual-panel-side > * {
  position: relative;
  z-index: 2;
}

.visual-panel-main::after,
.visual-panel-side::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-panel-side {
  right: 10%;
  top: 14%;
  width: 30%;
  min-height: 112px;
  padding: 1rem;
}

.panel-label {
  display: block;
  color: #d8d1d1;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-bars {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 82px;
  margin-top: 1rem;
}

.panel-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 84, 91, 0.95), rgba(125, 16, 20, 0.32));
  transform-origin: center bottom;
}

.panel-bars span:nth-child(1) { height: 34%; }
.panel-bars span:nth-child(2) { height: 52%; }
.panel-bars span:nth-child(3) { height: 88%; }
.panel-bars span:nth-child(4) { height: 64%; }

.panel-rings {
  position: relative;
  width: 78px;
  height: 78px;
  margin-top: 0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.panel-rings::before,
.panel-rings::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-rings::before {
  background:
    conic-gradient(from 0deg, transparent 0deg, transparent 296deg, rgba(255, 95, 101, 0.18) 332deg, rgba(255, 95, 101, 0.02) 360deg);
}

.panel-rings::after {
  inset: 32%;
}

body[data-page-kind="services"] .page-visual,
body[data-page-kind="service-detail"] .page-visual {
  --page-accent: rgba(255, 88, 94, 0.3);
  --page-grid-speed: 10s;
  --page-ring-speed: 6.2s;
  --page-bar-speed: 1.95s;
  --page-aurora-speed: 6.8s;
}

body[data-page-kind="services"] .visual-panel-main::after,
body[data-page-kind="service-detail"] .visual-panel-main::after {
  inset: auto 10% 16% 10%;
  height: 34%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px),
    linear-gradient(110deg, transparent 0%, rgba(255, 88, 94, 0.2) 38%, transparent 66%);
  animation: data-lanes 4.1s linear infinite;
  opacity: 0.88;
}

body[data-page-kind="services"] .visual-panel-side::after,
body[data-page-kind="service-detail"] .visual-panel-side::after {
  inset: 22%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 300deg, rgba(255, 88, 94, 0.22) 332deg, rgba(255, 88, 94, 0.03) 360deg);
  animation: radar-spin 4.6s linear infinite;
  opacity: 0.9;
}

body[data-page-kind="blog"] .page-visual {
  --page-accent: rgba(255, 104, 112, 0.34);
  --page-orb-right: 14%;
  --page-orb-top: 8%;
  --page-grid-speed: 9.8s;
  --page-scan-speed: 4.2s;
  --page-aurora-speed: 5.2s;
  --page-sheen-speed: 5.2s;
}

body[data-page-kind="blog"] .panel-bars span:nth-child(1) { height: 28%; }
body[data-page-kind="blog"] .panel-bars span:nth-child(2) { height: 44%; }
body[data-page-kind="blog"] .panel-bars span:nth-child(3) { height: 72%; }
body[data-page-kind="blog"] .panel-bars span:nth-child(4) { height: 58%; }

body[data-page-kind="blog"] .visual-panel-main::after {
  inset: 40% 11% 16% 11%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 13px),
    linear-gradient(90deg, transparent 0%, rgba(255, 88, 94, 0.22) 34%, transparent 56%);
  animation: editorial-scroll 4.4s linear infinite;
  opacity: 0.9;
}

body[data-page-kind="blog"] .visual-panel-side::after {
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 88, 94, 0.2) 0 9%, transparent 10%),
    conic-gradient(from 180deg, transparent 0 280deg, rgba(255, 88, 94, 0.24) 322deg, transparent 360deg);
  animation: orbit-signal 5s linear infinite;
  opacity: 0.92;
}

body[data-page-kind="faq"] .page-visual {
  --page-accent: rgba(255, 95, 101, 0.26);
  --page-grid-speed: 11s;
  --page-ring-speed: 6.6s;
}

body[data-page-kind="faq"] .panel-bars span:nth-child(1) { height: 40%; }
body[data-page-kind="faq"] .panel-bars span:nth-child(2) { height: 54%; }
body[data-page-kind="faq"] .panel-bars span:nth-child(3) { height: 62%; }
body[data-page-kind="faq"] .panel-bars span:nth-child(4) { height: 46%; }

body[data-page-kind="faq"] .visual-panel-main::after {
  inset: 38% 11% 15% 11%;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 72%, transparent 72%) 0 10% / 100% 12px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 58%, transparent 58%) 0 34% / 100% 12px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 84%, transparent 84%) 0 58% / 100% 12px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 66%, transparent 66%) 0 82% / 100% 12px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(255, 88, 94, 0.18) 40%, transparent 64%);
  animation: faq-sweep 3.9s linear infinite;
  opacity: 0.86;
}

body[data-page-kind="faq"] .visual-panel-side::after {
  inset: 20%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 88, 94, 0.22) 0 10%, transparent 11%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(255, 88, 94, 0.16) 43% 46%, transparent 47%);
  animation: beacon-pulse 3.2s ease-in-out infinite;
  opacity: 0.9;
}

body[data-page-kind="careers"] .page-visual {
  --page-accent: rgba(255, 102, 109, 0.28);
  --page-orb-right: 16%;
  --page-orb-top: 12%;
  --page-aurora-speed: 6.2s;
}

body[data-page-kind="careers"] .panel-bars span:nth-child(1) { height: 24%; }
body[data-page-kind="careers"] .panel-bars span:nth-child(2) { height: 42%; }
body[data-page-kind="careers"] .panel-bars span:nth-child(3) { height: 68%; }
body[data-page-kind="careers"] .panel-bars span:nth-child(4) { height: 92%; }

body[data-page-kind="careers"] .visual-panel-main::after {
  inset: 36% 11% 14% 11%;
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 82%, rgba(255, 88, 94, 0.8) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 58%, rgba(255, 88, 94, 0.75) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 30%, rgba(255, 88, 94, 0.8) 0 4px, transparent 5px),
    linear-gradient(145deg, transparent 0 18%, rgba(255, 88, 94, 0.22) 18% 20%, transparent 20% 44%, rgba(255, 88, 94, 0.2) 44% 46%, transparent 46% 70%, rgba(255, 88, 94, 0.16) 70% 72%, transparent 72%);
  animation: ladder-rise 4.2s ease-in-out infinite;
  opacity: 0.9;
}

body[data-page-kind="careers"] .visual-panel-side::after {
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 88, 94, 0.85) 0 7%, transparent 8%),
    conic-gradient(from 40deg, transparent 0 260deg, rgba(255, 88, 94, 0.22) 300deg, transparent 360deg);
  animation: orbit-signal 4.8s linear infinite reverse;
  opacity: 0.92;
}

body[data-page-kind="testimonials"] .page-visual {
  --page-accent: rgba(255, 118, 124, 0.24);
  --page-grid-speed: 14s;
  --page-bar-speed: 2.45s;
  --page-aurora-speed: 7.4s;
}

body[data-page-kind="testimonials"] .panel-bars span:nth-child(1) { height: 46%; }
body[data-page-kind="testimonials"] .panel-bars span:nth-child(2) { height: 58%; }
body[data-page-kind="testimonials"] .panel-bars span:nth-child(3) { height: 66%; }
body[data-page-kind="testimonials"] .panel-bars span:nth-child(4) { height: 54%; }

body[data-page-kind="testimonials"] .visual-panel-main::after {
  inset: auto 10% 16% 10%;
  height: 42%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 52%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 62%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    linear-gradient(180deg, transparent 58%, rgba(255, 88, 94, 0.22) 58% 61%, transparent 61% 100%);
  animation: confidence-wave 4.8s ease-in-out infinite;
  opacity: 0.88;
}

body[data-page-kind="testimonials"] .visual-panel-side::after {
  inset: 17%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 88, 94, 0.1) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(255, 88, 94, 0.16) 37% 40%, transparent 41%),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(255, 88, 94, 0.14) 59% 62%, transparent 63%);
  animation: testimonial-echo 4.6s ease-in-out infinite;
  opacity: 0.9;
}

body[data-page-kind="client-tools"] .page-visual {
  --page-accent: rgba(255, 90, 97, 0.3);
  --page-grid-speed: 9.6s;
  --page-scan-speed: 4.6s;
  --page-aurora-speed: 5.8s;
}

body[data-page-kind="client-tools"] .panel-bars span:nth-child(1) { height: 32%; }
body[data-page-kind="client-tools"] .panel-bars span:nth-child(2) { height: 46%; }
body[data-page-kind="client-tools"] .panel-bars span:nth-child(3) { height: 46%; }
body[data-page-kind="client-tools"] .panel-bars span:nth-child(4) { height: 32%; }

body[data-page-kind="client-tools"] .visual-panel-main::after {
  inset: auto 10% 16% 10%;
  height: 40%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 16%, transparent 16% 22%, rgba(255, 255, 255, 0.08) 22% 38%, transparent 38% 44%, rgba(255, 255, 255, 0.08) 44% 60%, transparent 60% 66%, rgba(255, 255, 255, 0.08) 66% 82%, transparent 82%),
    linear-gradient(100deg, transparent 0%, rgba(255, 88, 94, 0.22) 34%, transparent 56%);
  animation: route-flow 3.6s linear infinite;
  opacity: 0.92;
}

body[data-page-kind="client-tools"] .visual-panel-side::after {
  inset: 20%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent 0 40%, rgba(255, 88, 94, 0.2) 50%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 88, 94, 0.14) 0 20%, transparent 21%);
  animation: tools-scan 3.4s ease-in-out infinite;
  opacity: 0.9;
}

body[data-page-kind="contact"] .page-visual {
  --page-accent: rgba(255, 96, 103, 0.3);
  --page-grid-speed: 9.4s;
  --page-aurora-speed: 5.4s;
}

.visual-noise,
.visual-variant {
  position: absolute;
  inset: 0;
}

.visual-noise {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.045) 0.7px, transparent 0.7px);
  background-size: 11px 11px;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.variant-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.variant-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -20% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 88, 94, 0.14), rgba(255, 88, 94, 0) 68%);
  filter: blur(12px);
  opacity: 0.9;
  animation: panel-glow-drift 4.8s ease-in-out infinite;
  pointer-events: none;
}

.visual-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #e8dcdc;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-variant-contact {
  position: relative;
}

.visual-variant-about,
.visual-variant-locations {
  position: relative;
}

.about-story-stage,
.locations-corridor-stage {
  position: absolute;
  inset: 0;
}

.about-stage-chip,
.locations-stage-chip {
  position: absolute;
  left: 8.5%;
  top: 11%;
}

.about-line,
.locations-route {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 128, 0.08), rgba(255, 122, 128, 0.42));
  transform-origin: left center;
}

.about-line-a {
  left: 12%;
  right: 35%;
  top: 38%;
  transform: rotate(11deg);
}

.about-line-b {
  left: 24%;
  right: 22%;
  top: 49%;
  transform: rotate(-8deg);
}

.about-line-c {
  left: 18%;
  right: 30%;
  top: 62%;
  transform: rotate(5deg);
}

.about-node,
.locations-node {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #ff6e74;
  box-shadow:
    0 0 0 10px rgba(255, 110, 116, 0.08),
    0 0 32px rgba(255, 110, 116, 0.2);
}

.about-node-a {
  left: 16%;
  top: 34%;
}

.about-node-b {
  left: 38%;
  top: 51%;
}

.about-node-c {
  left: 62%;
  top: 39%;
}

.about-node-d {
  left: 56%;
  top: 65%;
}

.about-pulse {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 128, 0.24);
  animation: pagePulse 2.8s ease-out infinite;
}

.about-pulse-a {
  left: 35%;
  top: 47%;
}

.about-pulse-b {
  left: 59%;
  top: 36%;
  animation-delay: 1.1s;
}

.about-card,
.locations-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(12, 11, 15, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(10px);
}

.about-card-label,
.locations-card-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 240, 241, 0.72);
  margin-bottom: 0.35rem;
}

.about-card strong,
.locations-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.about-card-left {
  left: 8.5%;
  top: 50%;
  width: 34%;
}

.about-card-right {
  right: 9%;
  top: 22%;
  width: 30%;
}

.about-card-bottom {
  right: 14%;
  bottom: 12%;
  width: 36%;
}

.about-card-bars,
.locations-card-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.about-card-bars span,
.locations-card-bars span {
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 94, 101, 0.18), rgba(255, 94, 101, 0.68));
  animation: pageBarGlow 2.6s ease-in-out infinite;
}

.about-card-bars span:nth-child(2),
.locations-card-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.about-card-bars span:nth-child(3),
.locations-card-bars span:nth-child(3) {
  animation-delay: 0.4s;
}

.about-card-bars span:nth-child(4),
.locations-card-bars span:nth-child(4) {
  animation-delay: 0.6s;
}

.locations-route-a {
  left: 12%;
  right: 17%;
  top: 44%;
  transform: rotate(-4deg);
}

.locations-route-b {
  left: 18%;
  right: 26%;
  top: 58%;
  transform: rotate(8deg);
}

.locations-route-c {
  left: 22%;
  right: 19%;
  top: 70%;
  transform: rotate(-7deg);
}

.node-hope {
  left: 15%;
  top: 41%;
}

.node-chilliwack {
  left: 28%;
  top: 55%;
}

.node-abbotsford {
  left: 42%;
  top: 47%;
}

.node-langley {
  left: 58%;
  top: 60%;
}

.node-surrey {
  left: 72%;
  top: 52%;
}

.node-vancouver {
  left: 82%;
  top: 45%;
}

.locations-runner {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(255, 241, 242, 0.92);
  box-shadow: 0 0 26px rgba(255, 241, 242, 0.28);
  animation: corridorRunner 4.6s linear infinite;
}

.locations-runner-a {
  top: 43.5%;
  left: 15%;
}

.locations-runner-b {
  top: 56%;
  left: 28%;
  animation-delay: 1.6s;
}

.locations-card-top {
  left: 9%;
  top: 16%;
  width: 34%;
}

.locations-card-bottom {
  right: 9%;
  bottom: 12%;
  width: 34%;
}

.contact-visual-stage {
  position: absolute;
  inset: 8.5% 7.5%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 24% 24%, rgba(255, 94, 101, 0.16), transparent 34%),
    rgba(13, 13, 17, 0.86);
  overflow: hidden;
  animation: contact-stage-drift 7.2s ease-in-out infinite;
}

.contact-stage-chip {
  top: 24px;
  left: 24px;
}

.contact-visual-rings,
.contact-visual-lines,
.contact-visual-pulses,
.contact-visual-panels,
.contact-visual-sweep {
  position: absolute;
  inset: 0;
}

.contact-visual-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  animation: contact-ring-breathe 4.8s ease-in-out infinite;
}

.contact-visual-rings span:nth-child(1) { inset: 18% 18% 18% 18%; }
.contact-visual-rings span:nth-child(2) { inset: 30% 30% 30% 30%; animation-delay: 0.4s; }
.contact-visual-rings span:nth-child(3) { inset: 41% 41% 41% 41%; animation-delay: 0.8s; }

.contact-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 89, 96, 0.12), rgba(255, 89, 96, 0.9), rgba(255, 89, 96, 0.12));
  transform-origin: left center;
}

.contact-line-a { top: 38%; left: 17%; width: 42%; transform: rotate(18deg); }
.contact-line-b { top: 50%; left: 43%; width: 24%; transform: rotate(-18deg); }
.contact-line-c { top: 63%; left: 52%; width: 22%; transform: rotate(26deg); }

.contact-line-a { animation: contact-line-breathe-a 4.2s ease-in-out infinite; }
.contact-line-b { animation: contact-line-breathe-b 4.6s ease-in-out infinite; }
.contact-line-c { animation: contact-line-breathe-c 5s ease-in-out infinite; }

.contact-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff2f2;
  box-shadow: 0 0 0 8px rgba(255, 89, 96, 0.14);
}

.contact-pulse-a {
  top: 44%;
  left: 30%;
  animation: contact-pulse-route-a 4.8s ease-in-out infinite;
}

.contact-pulse-b {
  top: 52%;
  left: 56%;
  animation: contact-pulse-route-b 4.8s ease-in-out infinite 0.9s;
}

.contact-pulse-c {
  top: 64%;
  left: 71%;
  animation: contact-pulse-route-c 4.8s ease-in-out infinite 1.8s;
}

.contact-visual-panel {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 18, 0.88);
  overflow: hidden;
}

.contact-visual-panel::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 0 20%, rgba(255, 255, 255, 0.12) 20% 27%, transparent 27% 42%, rgba(255, 255, 255, 0.1) 42% 49%, transparent 49% 64%, rgba(255, 255, 255, 0.08) 64% 71%, transparent 71%),
    linear-gradient(90deg, transparent 0%, rgba(255, 86, 93, 0.2) 38%, transparent 62%);
  animation: contact-panel-scan 4.2s linear infinite;
}

.contact-panel-a { left: 10%; top: 54%; width: 32%; height: 18%; }
.contact-panel-b { left: 46%; top: 18%; width: 26%; height: 16%; animation: contact-panel-float-a 5.6s ease-in-out infinite; }
.contact-panel-c { right: 8%; bottom: 14%; width: 20%; height: 20%; animation: contact-panel-float-b 5.2s ease-in-out infinite; }
.contact-panel-a { animation: contact-panel-float-c 5.8s ease-in-out infinite; }

.contact-visual-beacon {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 28%;
  height: 44%;
}

.contact-visual-beacon span,
.contact-visual-beacon i {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-visual-beacon span:nth-child(1) { animation: contact-beacon-wave 3.8s ease-in-out infinite; }
.contact-visual-beacon span:nth-child(2) { inset: 34%; animation: contact-beacon-wave 3.8s ease-in-out infinite 0.5s; }
.contact-visual-beacon span:nth-child(3) { inset: 46%; animation: contact-beacon-wave 3.8s ease-in-out infinite 1s; }

.contact-visual-beacon i {
  inset: 50%;
  border: 0;
  background: radial-gradient(circle, rgba(255, 95, 101, 0.96) 0 28%, transparent 29%);
  box-shadow: 0 0 30px rgba(255, 89, 96, 0.3);
  animation: contact-beacon-core 3.4s ease-in-out infinite;
}

.contact-visual-sweep {
  background: linear-gradient(105deg, transparent 12%, rgba(255, 90, 97, 0.14) 46%, transparent 78%);
  transform: translateX(-110%);
  animation: contact-stage-sweep 5.1s linear infinite;
}

.ambient-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 96, 103, 0.94);
  box-shadow: 0 0 0 10px rgba(255, 96, 103, 0.08);
  animation: chart-ping 2s ease-out infinite;
}

.ambient-node-a { top: 26%; left: 16%; }
.ambient-node-b { right: 22%; bottom: 28%; animation-delay: 0.55s; }
.ambient-node-c { right: 14%; top: 58%; animation-delay: 1.1s; }

.services-main-card {
  left: 8%;
  bottom: 14%;
  width: 66%;
  height: 42%;
}

.services-status-row {
  position: absolute;
  top: 2.6rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 2;
}

.services-status-row span {
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e8dede;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: service-chip-pulse 2.1s ease-in-out infinite;
}

.services-status-row span:nth-child(2) { animation-delay: 0.18s; }
.services-status-row span:nth-child(3) { animation-delay: 0.36s; }

.services-main-grid {
  position: absolute;
  inset: 4.4rem 1rem 1rem 1rem;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
}

.services-line-chart {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 4.9rem;
  height: 22%;
  z-index: 2;
}

.services-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.54), rgba(255, 88, 94, 0.08));
}

.services-line-primary {
  top: 48%;
  transform: rotate(-8deg);
}

.services-line-secondary {
  top: 36%;
  transform: rotate(10deg);
  opacity: 0.46;
}

.services-line-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a6f;
  box-shadow: 0 0 0 8px rgba(255, 106, 111, 0.1);
  animation: chart-ping 1.8s ease-out infinite;
}

.services-line-dot-a {
  right: 22%;
  top: 18%;
}

.services-line-dot-b {
  left: 30%;
  top: 54%;
  animation-delay: 0.5s;
}

.services-bars {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 2.9rem;
  height: 38%;
  display: flex;
  align-items: end;
  gap: 0.7rem;
  z-index: 2;
}

.services-bars span,
.detail-metrics span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 93, 99, 0.98), rgba(132, 18, 22, 0.32));
  transform-origin: center bottom;
}

.services-bars span:nth-child(1) { height: 18%; animation: bar-pulse 1.7s ease-in-out infinite; }
.services-bars span:nth-child(2) { height: 40%; animation: bar-pulse 1.7s ease-in-out 0.12s infinite; }
.services-bars span:nth-child(3) { height: 62%; animation: bar-pulse 1.7s ease-in-out 0.24s infinite; }
.services-bars span:nth-child(4) { height: 84%; animation: bar-pulse 1.7s ease-in-out 0.36s infinite; }
.services-bars span:nth-child(5) { height: 58%; animation: bar-pulse 1.7s ease-in-out 0.48s infinite; }

.services-scan-beam {
  position: absolute;
  inset: 24% 8% 14% 8%;
  border-radius: 24px;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 88, 94, 0.16) 44%, transparent 58%);
  transform: translateX(-120%);
  animation: services-scan 3.1s ease-in-out infinite;
  z-index: 1;
}

.services-activity-row {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  z-index: 2;
}

.services-activity-row span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 88, 94, 0.48), rgba(255, 255, 255, 0.04));
  animation: rail-blink 1.7s ease-in-out infinite;
}

.services-activity-row span:nth-child(2) { animation-delay: 0.16s; }
.services-activity-row span:nth-child(3) { animation-delay: 0.32s; }
.services-activity-row span:nth-child(4) { animation-delay: 0.48s; }

.services-runner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff666b;
  box-shadow: 0 0 0 8px rgba(255, 102, 107, 0.12);
  z-index: 3;
}

.services-runner-a { animation: services-run-a 2.6s linear infinite; }
.services-runner-b { animation: services-run-b 2.6s linear infinite 0.9s; }

.services-side-card {
  top: 14%;
  right: 8%;
  width: 26%;
  height: 34%;
}

.services-radar,
.faq-core,
.careers-orbit,
.testimonials-core,
.tools-lock-core,
.blog-orbit {
  position: absolute;
  inset: 28% auto auto 18%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.services-radar {
  inset: 34% auto auto 18%;
}

.services-radar span,
.faq-core span,
.careers-orbit span,
.testimonials-core span,
.tools-lock-core span,
.blog-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-radar span:nth-child(2),
.faq-core span:nth-child(2),
.careers-orbit span:nth-child(2),
.testimonials-core span:nth-child(2),
.tools-lock-core span:nth-child(2),
.blog-orbit span:nth-child(2) {
  inset: 18%;
}

.services-radar span:nth-child(3),
.faq-core span:nth-child(3),
.testimonials-core span:nth-child(3),
.blog-orbit span:nth-child(3) {
  inset: 36%;
}

.services-radar i,
.faq-core i,
.careers-orbit i,
.tools-lock-core i {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 304deg, rgba(255, 88, 94, 0.34) 336deg, rgba(255, 88, 94, 0.04) 360deg);
  animation: radar-spin 2.8s linear infinite;
}

.services-side-stack b {
  display: block;
  width: 58px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 88, 94, 0.62), rgba(255, 255, 255, 0.04));
  animation: rail-blink 1.4s ease-in-out infinite;
}

.services-side-stack {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.62rem;
}

.services-side-stack b:nth-child(2) { animation-delay: 0.2s; }
.services-side-stack b:nth-child(3) { animation-delay: 0.4s; }

.services-command-stage {
  position: absolute;
  inset: 6.5%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 12, 0.86);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.services-command-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 26%, rgba(255, 88, 94, 0.12), transparent 22%),
    radial-gradient(circle at 74% 30%, rgba(255, 88, 94, 0.15), transparent 24%),
    radial-gradient(circle at 66% 70%, rgba(255, 88, 94, 0.18), transparent 22%);
  filter: blur(16px);
  opacity: 0.92;
  animation: services-stage-breathe 4.6s ease-in-out infinite;
}

.services-stage-chip {
  z-index: 3;
}

.services-stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.38;
}

.services-stage-aurora {
  position: absolute;
  inset: 12% 10% 18% 12%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 88, 94, 0.16), transparent 32%),
    radial-gradient(circle at 72% 58%, rgba(255, 88, 94, 0.16), transparent 26%);
  filter: blur(24px);
  animation: services-aurora-drift 6.8s ease-in-out infinite;
}

.services-coverage-board {
  position: absolute;
  left: 1.7rem;
  right: 20%;
  bottom: 1.5rem;
  height: 48%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(18, 18, 22, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.services-coverage-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.06) 46%, transparent 62%);
  transform: translateX(-140%);
  animation: services-paper-sheen 4.2s ease-in-out infinite;
}

.services-coverage-header {
  position: absolute;
  inset: 1.2rem 1.2rem auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 2;
}

.services-coverage-header > span {
  color: #efe2e2;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-coverage-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.services-coverage-chips b {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #efe1e1;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: service-chip-pulse 2s ease-in-out infinite;
}

.services-coverage-chips b:nth-child(2) { animation-delay: 0.18s; }
.services-coverage-chips b:nth-child(3) { animation-delay: 0.36s; }

.services-ticket-lanes {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  top: 4.6rem;
  height: 92px;
  z-index: 2;
}

.services-ticket-lane {
  position: absolute;
  left: 0;
  right: 20%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.36), rgba(255, 255, 255, 0.04));
}

.services-ticket-lane-a { top: 0; animation: services-rail-wave-a 2.7s ease-in-out infinite; }
.services-ticket-lane-b { top: 28px; right: 8%; animation: services-rail-wave-b 2.7s ease-in-out 0.3s infinite; }
.services-ticket-lane-c { top: 56px; right: 28%; animation: services-rail-wave-a 2.7s ease-in-out 0.6s infinite; }

.services-ticket-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe4e6;
  box-shadow: 0 0 0 8px rgba(255, 116, 121, 0.11);
}

.services-ticket-pulse-a { animation: services-ticket-flow-a 3.1s linear infinite; }
.services-ticket-pulse-b { animation: services-ticket-flow-b 3.5s linear infinite 0.7s; }
.services-ticket-pulse-c { animation: services-ticket-flow-c 3.8s linear infinite 1.15s; }

.services-coverage-bars {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.4rem;
  height: 42%;
  display: flex;
  align-items: end;
  gap: 0.62rem;
  z-index: 2;
}

.services-coverage-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255, 96, 103, 0.98), rgba(132, 18, 22, 0.28));
  transform-origin: center bottom;
  animation: bar-pulse 1.6s ease-in-out infinite;
}

.services-coverage-bars span:nth-child(1) { height: 18%; }
.services-coverage-bars span:nth-child(2) { height: 34%; animation-delay: 0.12s; }
.services-coverage-bars span:nth-child(3) { height: 56%; animation-delay: 0.24s; }
.services-coverage-bars span:nth-child(4) { height: 82%; animation-delay: 0.36s; }
.services-coverage-bars span:nth-child(5) { height: 48%; animation-delay: 0.48s; }

.services-coverage-trace {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.78), rgba(255, 88, 94, 0.08));
  z-index: 2;
}

.services-coverage-trace-a {
  left: 1.8rem;
  top: 46%;
  width: 56%;
  transform: rotate(-16deg);
  animation: services-trace-tilt-a 3.6s ease-in-out infinite;
}

.services-coverage-trace-b {
  left: 34%;
  top: 36%;
  width: 36%;
  transform: rotate(11deg);
  opacity: 0.62;
  animation: services-trace-tilt-b 3.6s ease-in-out 0.4s infinite;
}

.services-coverage-node,
.services-network-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 100, 107, 0.96);
  box-shadow: 0 0 0 10px rgba(255, 100, 107, 0.1);
  animation: chart-ping 1.8s ease-out infinite;
  z-index: 3;
}

.services-coverage-node-a { left: 37%; top: 39%; }
.services-coverage-node-b { left: 67%; top: 30%; animation-delay: 0.5s; }

.services-core-network {
  position: absolute;
  right: 2rem;
  top: 5rem;
  width: 34%;
  height: 46%;
}

.services-network-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.66), rgba(255, 88, 94, 0.08));
}

.services-network-link-a { left: 6%; top: 44%; width: 52%; transform: rotate(24deg); }
.services-network-link-b { left: 46%; top: 38%; width: 34%; transform: rotate(-18deg); }
.services-network-link-c { left: 20%; top: 66%; width: 48%; transform: rotate(-30deg); opacity: 0.7; }

.services-network-node-a { left: 2%; top: 46%; }
.services-network-node-b { left: 38%; top: 34%; animation-delay: 0.3s; }
.services-network-node-c { right: 12%; top: 42%; animation-delay: 0.6s; }
.services-network-node-d { left: 52%; bottom: 16%; animation-delay: 0.9s; }

.services-network-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffe3e5;
  box-shadow: 0 0 0 8px rgba(255, 227, 229, 0.08);
}

.services-network-pulse-a { animation: services-network-flow-a 2.8s linear infinite; }
.services-network-pulse-b { animation: services-network-flow-b 3.1s linear infinite 1.1s; }

.services-insight-dial {
  position: absolute;
  right: 2.2rem;
  top: 1.8rem;
  width: 138px;
  height: 138px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(18, 18, 22, 0.88);
  overflow: hidden;
}

.services-insight-dial span,
.services-insight-dial i,
.services-insight-dial b {
  position: absolute;
  border-radius: 50%;
}

.services-insight-dial span {
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-insight-dial span:nth-child(2) { inset: 34%; }
.services-insight-dial span:nth-child(3) { inset: 46%; }

.services-insight-dial i {
  inset: 12%;
  background: conic-gradient(from 0deg, transparent 0 290deg, rgba(255, 88, 94, 0.3) 330deg, rgba(255, 88, 94, 0.03) 360deg);
  animation: radar-spin 3.8s linear infinite;
}

.services-insight-dial b {
  width: 16px;
  height: 16px;
  right: 22%;
  top: 48%;
  background: #ff666b;
  box-shadow: 0 0 0 10px rgba(255, 102, 107, 0.12);
  animation: chart-ping 2s ease-out infinite;
}

.services-rhythm-board {
  position: absolute;
  left: 1.7rem;
  right: 26%;
  bottom: 1.8rem;
  height: 92px;
}

.services-rhythm-rail {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.35), rgba(255, 255, 255, 0.04));
}

.services-rhythm-rail-a { top: 0; animation: services-rail-wave-a 2.4s ease-in-out infinite; }
.services-rhythm-rail-b { top: 24px; animation: services-rail-wave-b 2.4s ease-in-out 0.2s infinite; }
.services-rhythm-rail-c { top: 48px; animation: services-rail-wave-a 2.4s ease-in-out 0.4s infinite; }
.services-rhythm-rail-d { top: 72px; animation: services-rail-wave-b 2.4s ease-in-out 0.6s infinite; }

.services-rhythm-ping {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe4e6;
  box-shadow: 0 0 0 8px rgba(255, 116, 121, 0.11);
}

.services-rhythm-ping-a { animation: services-rhythm-flow-a 3s linear infinite; }
.services-rhythm-ping-b { animation: services-rhythm-flow-b 3.3s linear infinite 0.7s; }
.services-rhythm-ping-c { animation: services-rhythm-flow-c 3.6s linear infinite 1.2s; }

.services-stage-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 88, 94, 0.12) 44%, transparent 60%);
  transform: translateX(-130%);
  animation: services-stage-scan 4.4s ease-in-out infinite;
  mix-blend-mode: screen;
}

.services-motion-stage {
  position: absolute;
  inset: 6.5%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 12, 0.86);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.services-motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 88, 94, 0.12), transparent 24%),
    radial-gradient(circle at 74% 30%, rgba(255, 88, 94, 0.15), transparent 24%),
    radial-gradient(circle at 64% 74%, rgba(255, 88, 94, 0.16), transparent 22%);
  filter: blur(18px);
  opacity: 0.9;
  animation: services-scene-breathe 5s ease-in-out infinite;
}

.services-motion-svg,
.services-stage-sheen,
.services-stage-aurora {
  position: absolute;
  inset: 0;
}

.services-motion-svg {
  width: 100%;
  height: 100%;
  z-index: 2;
}

.services-stage-chip {
  z-index: 3;
}

.services-stage-aurora {
  background:
    radial-gradient(circle at 24% 34%, rgba(255, 88, 94, 0.14), transparent 30%),
    radial-gradient(circle at 70% 58%, rgba(255, 88, 94, 0.16), transparent 26%);
  filter: blur(28px);
  opacity: 0.82;
  animation: services-aurora-swell 6.4s ease-in-out infinite;
}

.services-stage-sheen {
  z-index: 3;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.05) 48%, transparent 64%);
  transform: translateX(-135%);
  animation: services-scene-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.services-story-stage {
  position: absolute;
  inset: 6.5%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 12, 0.86);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.services-story-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 88, 94, 0.14), transparent 24%),
    radial-gradient(circle at 76% 32%, rgba(255, 88, 94, 0.15), transparent 24%),
    radial-gradient(circle at 66% 76%, rgba(255, 88, 94, 0.18), transparent 22%);
  filter: blur(18px);
  opacity: 0.88;
  animation: services-scene-breathe 5s ease-in-out infinite;
}

.services-story-intake,
.services-story-routes,
.services-story-hub,
.services-story-delivery,
.services-story-lanes,
.services-story-beam {
  position: absolute;
  z-index: 2;
}

.services-story-intake {
  left: 2rem;
  bottom: 2.2rem;
  width: 44%;
  height: 46%;
}

.services-ticket {
  position: absolute;
  width: 78%;
  height: 34%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(18, 18, 22, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.services-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.06) 46%, transparent 62%);
  transform: translateX(-140%);
  animation: services-ticket-sheen 4.2s ease-in-out infinite;
}

.services-ticket span {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 88, 94, 0.28), rgba(255, 255, 255, 0.04));
}

.services-ticket span:nth-child(1) { top: 1.15rem; right: 28%; }
.services-ticket span:nth-child(2) { top: 2.35rem; right: 14%; }
.services-ticket span:nth-child(3) { top: 3.55rem; right: 38%; }

.services-ticket-a {
  left: 0;
  bottom: 0;
  animation: services-ticket-float-a 5.6s ease-in-out infinite;
}

.services-ticket-b {
  left: 1.8rem;
  bottom: 3rem;
  opacity: 0.86;
  transform: scale(0.94);
  animation: services-ticket-float-b 5.6s ease-in-out infinite;
}

.services-ticket-c {
  left: 3.4rem;
  bottom: 6rem;
  opacity: 0.72;
  transform: scale(0.88);
  animation: services-ticket-float-c 5.6s ease-in-out infinite;
}

.services-story-routes {
  inset: 0;
}

.services-route {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.06), rgba(255, 102, 108, 0.82), rgba(255, 214, 216, 0.22));
  opacity: 0.9;
}

.services-route-a {
  left: 24%;
  top: 54%;
  width: 34%;
  transform: rotate(-18deg);
}

.services-route-b {
  left: 40%;
  top: 50%;
  width: 26%;
  transform: rotate(-8deg);
}

.services-route-c {
  left: 58%;
  top: 58%;
  width: 22%;
  transform: rotate(24deg);
}

.services-route-pulse,
.services-delivery-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffe3e5;
  box-shadow: 0 0 0 10px rgba(255, 116, 121, 0.11);
}

.services-route-pulse-a { animation: services-pulse-journey-a 4.8s linear infinite; }
.services-route-pulse-b { animation: services-pulse-journey-b 4.8s linear infinite 0.7s; }
.services-route-pulse-c { animation: services-pulse-journey-c 4.8s linear infinite 1.4s; }

.services-story-hub {
  right: 9.5rem;
  top: 6rem;
  width: 170px;
  height: 170px;
}

.services-hub-ring,
.services-hub-core,
.services-hub-sweep {
  position: absolute;
  border-radius: 50%;
}

.services-hub-ring {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hub-ring-a {
  border-style: dashed;
  animation: services-ring-spin 9s linear infinite;
}

.services-hub-ring-b {
  inset: 18%;
  border-style: dashed;
  animation: services-ring-spin-reverse 7s linear infinite;
}

.services-hub-ring-c {
  inset: 36%;
}

.services-hub-core {
  inset: 44%;
  background: radial-gradient(circle, rgba(255, 110, 116, 0.95), rgba(255, 88, 94, 0.2) 68%, transparent 100%);
  animation: services-core-pulse 2.8s ease-in-out infinite;
}

.services-hub-sweep {
  inset: 10%;
  background: conic-gradient(from 0deg, transparent 0 300deg, rgba(255, 88, 94, 0.34) 334deg, rgba(255, 88, 94, 0.04) 360deg);
  animation: radar-spin 3.8s linear infinite;
}

.services-story-delivery {
  right: 2.1rem;
  bottom: 2.4rem;
  width: 25%;
  height: 42%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(18, 18, 22, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.services-story-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.05) 46%, transparent 62%);
  transform: translateX(-140%);
  animation: services-ticket-sheen 4.4s ease-in-out infinite 0.5s;
}

.services-delivery-bars {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  height: 54%;
  display: flex;
  align-items: end;
  gap: 0.6rem;
}

.services-delivery-bars span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 96, 103, 0.98), rgba(132, 18, 22, 0.24));
  transform-origin: center bottom;
  animation: services-bar-rise 1.9s ease-in-out infinite;
}

.services-delivery-bars span:nth-child(1) { height: 26%; }
.services-delivery-bars span:nth-child(2) { height: 48%; animation-delay: 0.12s; }
.services-delivery-bars span:nth-child(3) { height: 74%; animation-delay: 0.24s; }
.services-delivery-bars span:nth-child(4) { height: 92%; animation-delay: 0.36s; }

.services-delivery-signal {
  position: absolute;
  inset: 0;
}

.services-delivery-line {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 102, 108, 0.78), rgba(255, 88, 94, 0.08));
}

.services-delivery-line-a {
  left: 12%;
  top: 48%;
  width: 62%;
  transform: rotate(-22deg);
  animation: services-line-drift-a 3.8s ease-in-out infinite;
}

.services-delivery-line-b {
  left: 34%;
  top: 32%;
  width: 34%;
  transform: rotate(12deg);
  animation: services-line-drift-b 3.8s ease-in-out infinite 0.4s;
}

.services-delivery-node-a { animation: services-delivery-node-a 4.2s ease-in-out infinite; }
.services-delivery-node-b { animation: services-delivery-node-b 4.2s ease-in-out infinite 1.1s; }

.services-story-lanes {
  left: 2rem;
  right: 34%;
  bottom: 1.8rem;
  height: 94px;
}

.services-lane {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.34), rgba(255, 255, 255, 0.04));
  animation: services-rail-breathe 2.2s ease-in-out infinite;
}

.services-lane-a { top: 0; }
.services-lane-b { top: 24px; animation-delay: 0.18s; }
.services-lane-c { top: 48px; animation-delay: 0.36s; }
.services-lane-d { top: 72px; animation-delay: 0.54s; }

.services-story-beam {
  inset: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 88, 94, 0.12) 44%, transparent 60%);
  transform: translateX(-130%);
  animation: services-story-scan 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.services-backlight {
  fill: rgba(255, 88, 94, 0.16);
  filter: blur(12px);
}

.services-backlight-a { animation: services-backlight-a 6.2s ease-in-out infinite; }
.services-backlight-b { animation: services-backlight-b 5.4s ease-in-out infinite; }
.services-backlight-c { animation: services-backlight-c 6.8s ease-in-out infinite; }

.services-console-shell,
.services-chart-shell {
  fill: rgba(18, 18, 22, 0.82);
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1.2;
}

.services-console-line,
.services-console-pill,
.services-console-rail {
  fill: rgba(255, 255, 255, 0.06);
}

.services-console-line {
  animation: services-console-line-breathe 2.6s ease-in-out infinite;
}

.services-console-line-b { animation-delay: 0.22s; }
.services-console-line-c { animation-delay: 0.44s; }

.services-console-pill {
  fill: rgba(255, 88, 94, 0.12);
  stroke: rgba(255, 123, 128, 0.28);
  stroke-width: 1;
  animation: services-pill-glow 2.2s ease-in-out infinite;
}

.services-console-pill-b { animation-delay: 0.2s; }
.services-console-pill-c { animation-delay: 0.4s; }

.services-console-rail {
  fill: rgba(255, 255, 255, 0.04);
  animation: services-rail-breathe 1.8s ease-in-out infinite;
}

.services-console-rail-b { animation-delay: 0.16s; }
.services-console-rail-c { animation-delay: 0.32s; }

.services-chart-bar {
  fill: url(#serviceBarFill);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: services-bar-rise 1.9s ease-in-out infinite;
}

.services-chart-bar-b { animation-delay: 0.16s; }
.services-chart-bar-c { animation-delay: 0.32s; }

.services-chart-trace,
.services-flow-path,
.services-hub-sweep {
  fill: none;
  stroke-linecap: round;
}

.services-chart-trace {
  stroke: url(#serviceStrokeA);
  stroke-width: 6;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: services-trace-draw 4s ease-in-out infinite;
}

.services-chart-node,
.services-flow-node,
.services-orbit-pulse {
  fill: #ff676d;
}

.services-chart-node {
  filter: drop-shadow(0 0 10px rgba(255, 102, 107, 0.28));
  animation: services-node-pulse 2.4s ease-in-out infinite;
}

.services-chart-node-top {
  animation-delay: 0.4s;
}

.services-flow-path {
  stroke: url(#serviceStrokeA);
  stroke-width: 4;
  stroke-dasharray: 18 20;
  animation: services-flow-dash 3.4s linear infinite;
  opacity: 0.92;
}

.services-flow-path-b { animation-duration: 4s; }
.services-flow-path-c { animation-duration: 4.4s; stroke: url(#serviceStrokeB); }

.services-flow-node {
  filter: drop-shadow(0 0 12px rgba(255, 102, 107, 0.22));
  animation: services-node-pulse 2.2s ease-in-out infinite;
}

.services-flow-node-b { animation-delay: 0.18s; }
.services-flow-node-c { animation-delay: 0.36s; }
.services-flow-node-d { animation-delay: 0.54s; }
.services-flow-node-e { animation-delay: 0.72s; }
.services-flow-node-f { animation-delay: 0.9s; }

.services-hub-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1.4;
}

.services-hub-ring-a {
  stroke-dasharray: 14 12;
  animation: services-ring-spin 9s linear infinite;
}

.services-hub-ring-b {
  stroke-dasharray: 8 10;
  animation: services-ring-spin-reverse 7.6s linear infinite;
}

.services-hub-ring-c {
  stroke: rgba(255, 255, 255, 0.12);
}

.services-hub-core {
  fill: url(#serviceCoreGlow);
  animation: services-core-pulse 2.8s ease-in-out infinite;
}

.services-hub-sweep {
  stroke: url(#serviceStrokeA);
  stroke-width: 6;
  transform-origin: 500px 140px;
  animation: services-sweep-rotate 3.6s linear infinite;
  opacity: 0.86;
}

.services-orbit-pulse-a { animation: services-orbit-a 3.6s ease-in-out infinite; }
.services-orbit-pulse-b { animation: services-orbit-b 4s ease-in-out infinite; }
.services-orbit-pulse-c { animation: services-orbit-c 4.4s ease-in-out infinite; }
.services-orbit-pulse-d { animation: services-orbit-d 4.8s ease-in-out infinite; }

@media (max-width: 1024px) {
  .services-motion-stage {
    inset: 5.5%;
  }
}

@media (max-width: 768px) {
  .services-motion-stage {
    inset: 4.5%;
  }

  .services-story-stage {
    inset: 4.5%;
  }

  .services-story-hub {
    right: 6rem;
    top: 5.2rem;
    transform: scale(0.84);
  }

  .services-story-delivery {
    width: 30%;
  }
}

@media (max-width: 1024px) {
  .services-core-network {
    width: 32%;
    height: 40%;
    right: 1.5rem;
  }

  .services-insight-dial {
    width: 120px;
    height: 120px;
    right: 1.5rem;
  }

  .services-coverage-board {
    right: 16%;
  }
}

@media (max-width: 768px) {
  .services-command-stage {
    inset: 5%;
  }

  .services-coverage-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-coverage-board {
    left: 1rem;
    right: 1rem;
    height: 46%;
  }

  .services-core-network,
  .services-insight-dial {
    transform: scale(0.9);
    transform-origin: top right;
  }

  .services-rhythm-board {
    right: 16%;
  }
}

.services-rail b {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 96, 103, 0.95), rgba(132, 18, 22, 0.28));
  animation: rail-blink 1.4s ease-in-out infinite;
}

.services-rail b:nth-child(2) { animation-delay: 0.2s; }
.services-rail b:nth-child(3) { animation-delay: 0.4s; }

.detail-route-card {
  left: 8%;
  top: 15%;
  width: 68%;
  height: 36%;
}

.detail-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.56), rgba(255, 88, 94, 0.08));
}

.detail-line-a { left: 14%; width: 28%; top: 58%; transform: rotate(18deg); }
.detail-line-b { left: 40%; width: 26%; top: 50%; transform: rotate(-12deg); }
.detail-line-c { left: 60%; width: 18%; top: 60%; transform: rotate(22deg); }

.detail-node,
.tools-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 100, 107, 0.94);
  box-shadow: 0 0 0 10px rgba(255, 100, 107, 0.1);
  animation: chart-ping 1.9s ease-out infinite;
}

.detail-node-a { left: 14%; top: 56%; }
.detail-node-b { left: 40%; top: 48%; animation-delay: 0.3s; }
.detail-node-c { left: 64%; top: 56%; animation-delay: 0.6s; }
.detail-node-d { right: 16%; top: 42%; animation-delay: 0.9s; }

.detail-pulse,
.tools-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd7d9;
  box-shadow: 0 0 0 8px rgba(255, 215, 217, 0.08);
}

.detail-pulse-a { animation: detail-pulse-a 2.3s linear infinite; }
.detail-pulse-b { animation: detail-pulse-b 2.3s linear infinite 1.1s; }

.detail-metrics-card {
  right: 8%;
  bottom: 14%;
  width: 28%;
  height: 28%;
}

.detail-metrics {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 54%;
  display: flex;
  align-items: end;
  gap: 0.55rem;
}

.detail-metrics span:nth-child(1) { height: 26%; animation: bar-pulse 1.6s ease-in-out infinite; }
.detail-metrics span:nth-child(2) { height: 48%; animation: bar-pulse 1.6s ease-in-out 0.14s infinite; }
.detail-metrics span:nth-child(3) { height: 68%; animation: bar-pulse 1.6s ease-in-out 0.28s infinite; }
.detail-metrics span:nth-child(4) { height: 88%; animation: bar-pulse 1.6s ease-in-out 0.42s infinite; }

.detail-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 100%);
  transform: translateX(-140%);
  animation: panel-sheen 3.8s ease-in-out infinite;
}

.service-overview-layout .page-card,
.service-detail-foundation-grid .foundation-card,
.service-detail-process-grid .process-card,
.service-detail-faq-grid .faq-card {
  min-width: 0;
}

.service-overview-layout .page-card {
  min-height: 100%;
}

.service-overview-points {
  margin-top: 1rem;
}

.service-detail-foundation-grid,
.service-detail-process-grid,
.service-detail-faq-grid {
  align-items: stretch;
}

.service-detail-enhanced-visual {
  --page-accent: rgba(255, 90, 97, 0.32);
  --page-grid-speed: 8.4s;
  --page-sheen-speed: 5.8s;
  --page-aurora-speed: 5.4s;
}

.service-scene,
.scene-card {
  position: absolute;
}

.service-scene {
  inset: 0;
}

.scene-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.84);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 88, 94, 0.18), rgba(255, 88, 94, 0) 70%);
  filter: blur(14px);
  opacity: 0.92;
  animation: panel-glow-drift 4.8s ease-in-out infinite;
}

.service-scene .visual-chip {
  z-index: 2;
}

.managed-support-main,
.cybersecurity-main,
.cloud-main,
.infrastructure-main,
.continuity-main,
.strategy-main {
  left: 8%;
  bottom: 14%;
  width: 56%;
  height: 44%;
}

.managed-support-side,
.cybersecurity-side,
.cloud-side,
.infrastructure-side,
.continuity-side,
.strategy-side {
  right: 8%;
  top: 14%;
  width: 22%;
  height: 30%;
}

.managed-lanes,
.managed-status-grid,
.cyber-grid-lines,
.cyber-nodes,
.cloud-sync-lines,
.cloud-service-tiles,
.continuity-track,
.strategy-matrix,
.strategy-line,
.infra-line,
.infra-uptime-bars {
  position: absolute;
}

.managed-lanes {
  left: 1.1rem;
  right: 1.1rem;
  top: 4.3rem;
  display: grid;
  gap: 0.75rem;
}

.managed-lanes span {
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 20%, rgba(255, 88, 94, 0.32) 20% 48%, rgba(255, 255, 255, 0.06) 48% 100%);
  animation: service-lane-glow 2.1s ease-in-out infinite;
}

.managed-lanes span:nth-child(2) { animation-delay: 0.16s; }
.managed-lanes span:nth-child(3) { animation-delay: 0.32s; }
.managed-lanes span:nth-child(4) { animation-delay: 0.48s; }

.managed-lane-pulses {
  position: absolute;
  inset: 4.1rem 1rem 4.2rem 1rem;
}

.lane-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffd8da;
  box-shadow: 0 0 0 8px rgba(255, 107, 113, 0.12);
}

.lane-pulse-a { animation: lane-run-a 3.2s linear infinite; }
.lane-pulse-b { animation: lane-run-b 3.6s linear infinite 0.7s; }
.lane-pulse-c { animation: lane-run-c 3.9s linear infinite 1.1s; }

.managed-status-grid {
  left: 1rem;
  right: 1rem;
  bottom: 4.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.managed-status-grid b {
  height: 54px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.managed-queue-bars {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.managed-queue-bars span {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 88, 94, 0.62), rgba(255, 255, 255, 0.04));
  animation: rail-blink 1.45s ease-in-out infinite;
}

.managed-queue-bars span:nth-child(2) { animation-delay: 0.14s; }
.managed-queue-bars span:nth-child(3) { animation-delay: 0.28s; }
.managed-queue-bars span:nth-child(4) { animation-delay: 0.42s; }

.managed-device-orbit,
.cyber-shield-rings,
.cloud-tenant-rings,
.continuity-vault-rings,
.strategy-rings {
  position: absolute;
  inset: 28% auto auto 20%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.managed-device-orbit span,
.cyber-shield-rings span,
.cloud-tenant-rings span,
.continuity-vault-rings span,
.strategy-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.managed-device-orbit span:nth-child(2),
.cyber-shield-rings span:nth-child(2),
.cloud-tenant-rings span:nth-child(2),
.continuity-vault-rings span:nth-child(2),
.strategy-rings span:nth-child(2) {
  inset: 18%;
}

.managed-device-orbit span:nth-child(3),
.cyber-shield-rings span:nth-child(3),
.cloud-tenant-rings span:nth-child(3),
.continuity-vault-rings span:nth-child(3),
.strategy-rings span:nth-child(3) {
  inset: 36%;
}

.managed-device-orbit i,
.cyber-shield-rings i,
.cloud-tenant-rings i,
.continuity-vault-rings i,
.strategy-rings i {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 292deg, rgba(255, 88, 94, 0.34) 330deg, rgba(255, 88, 94, 0.04) 360deg);
  animation: orbit-signal 4.2s linear infinite;
}

.managed-device-pings,
.cyber-shield-badges,
.cloud-mini-bars,
.continuity-vault-cells,
.strategy-signal-bars {
  position: absolute;
}

.managed-device-pings {
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.7rem;
}

.managed-device-pings b,
.cyber-shield-badges b {
  width: 44px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.7), rgba(255, 255, 255, 0.05));
  animation: service-lane-glow 1.8s ease-in-out infinite;
}

.managed-device-pings b:nth-child(2) { animation-delay: 0.24s; }

.cyber-grid-lines {
  inset: 4.8rem 1rem 1rem 1rem;
}

.cyber-line,
.infra-line,
.strategy-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.58), rgba(255, 88, 94, 0.08));
}

.cyber-line-a { left: 10%; top: 22%; width: 40%; transform: rotate(18deg); }
.cyber-line-b { left: 34%; top: 48%; width: 36%; transform: rotate(-12deg); }
.cyber-line-c { left: 18%; top: 70%; width: 54%; transform: rotate(9deg); }

.cyber-node,
.infra-node,
.continuity-stage,
.strategy-milestone {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 100, 107, 0.94);
  box-shadow: 0 0 0 10px rgba(255, 100, 107, 0.1);
  animation: chart-ping 1.9s ease-out infinite;
}

.cyber-node-a { left: 12%; top: 18%; }
.cyber-node-b { left: 52%; top: 24%; animation-delay: 0.25s; }
.cyber-node-c { left: 68%; top: 46%; animation-delay: 0.5s; }
.cyber-node-d { left: 32%; top: 64%; animation-delay: 0.75s; }
.cyber-node-e { right: 10%; top: 18%; animation-delay: 1s; }

.cyber-pulse-trace {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 88, 94, 0.18) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: services-scan 3.2s ease-in-out infinite;
}

.cyber-shield-badges {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.55rem;
}

.cyber-shield-badges b:nth-child(2) { animation-delay: 0.18s; }
.cyber-shield-badges b:nth-child(3) { animation-delay: 0.36s; }

.cloud-sync-lines {
  left: 1rem;
  right: 1rem;
  top: 5rem;
  display: grid;
  gap: 1rem;
}

.cloud-sync-lines span {
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 22%, rgba(255, 88, 94, 0.36) 22% 54%, rgba(255, 255, 255, 0.04) 54%);
  animation: service-lane-glow 2s ease-in-out infinite;
}

.cloud-sync-lines span:nth-child(2) { animation-delay: 0.2s; }
.cloud-sync-lines span:nth-child(3) { animation-delay: 0.4s; }

.cloud-sync-pulses {
  position: absolute;
  inset: 4.7rem 1rem auto 1rem;
  height: 120px;
}

.cloud-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd8da;
  box-shadow: 0 0 0 8px rgba(255, 108, 114, 0.12);
}

.cloud-pulse-a { animation: cloud-sync-a 3.1s linear infinite; }
.cloud-pulse-b { animation: cloud-sync-b 3.4s linear infinite 0.6s; }
.cloud-pulse-c { animation: cloud-sync-c 3.8s linear infinite 1.1s; }

.cloud-service-tiles {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.cloud-service-tiles b {
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cloud-mini-bars {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 40%;
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

.cloud-mini-bars b,
.strategy-signal-bars b,
.infra-uptime-bars b {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 93, 99, 0.98), rgba(132, 18, 22, 0.32));
  transform-origin: center bottom;
  animation: bar-pulse 1.7s ease-in-out infinite;
}

.cloud-mini-bars b:nth-child(1) { height: 34%; }
.cloud-mini-bars b:nth-child(2) { height: 52%; animation-delay: 0.18s; }
.cloud-mini-bars b:nth-child(3) { height: 72%; animation-delay: 0.36s; }

.infra-line-a { left: 14%; top: 30%; width: 24%; transform: rotate(18deg); }
.infra-line-b { left: 34%; top: 46%; width: 22%; transform: rotate(-12deg); }
.infra-line-c { left: 50%; top: 32%; width: 24%; transform: rotate(14deg); }
.infra-line-d { left: 30%; top: 66%; width: 42%; transform: rotate(8deg); }

.infra-node-a { left: 12%; top: 26%; }
.infra-node-b { left: 34%; top: 44%; animation-delay: 0.22s; }
.infra-node-c { left: 50%; top: 28%; animation-delay: 0.44s; }
.infra-node-d { left: 72%; top: 46%; animation-delay: 0.66s; }
.infra-node-e { left: 62%; top: 70%; animation-delay: 0.88s; }

.infra-packet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffe8e8;
  box-shadow: 0 0 0 8px rgba(255, 232, 232, 0.08);
}

.infra-packet-a { animation: infra-flow-a 3.1s linear infinite; }
.infra-packet-b { animation: infra-flow-b 3.6s linear infinite 0.8s; }

.infra-uptime-bars {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 48%;
  display: flex;
  align-items: end;
  gap: 0.55rem;
}

.infra-uptime-bars b:nth-child(1) { height: 28%; }
.infra-uptime-bars b:nth-child(2) { height: 46%; animation-delay: 0.16s; }
.infra-uptime-bars b:nth-child(3) { height: 68%; animation-delay: 0.32s; }
.infra-uptime-bars b:nth-child(4) { height: 86%; animation-delay: 0.48s; }

.infra-side-glow {
  position: absolute;
  inset: 18% 16% 16%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 38% 50%, rgba(255, 88, 94, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  animation: panel-breathe 4.6s ease-in-out infinite;
}

.continuity-track {
  inset: 30% 12% 18% 12%;
}

.continuity-link {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.56), rgba(255, 88, 94, 0.08));
}

.continuity-link-a { left: 10%; top: 50%; width: 24%; }
.continuity-link-b { left: 34%; top: 50%; width: 24%; }
.continuity-link-c { left: 58%; top: 50%; width: 22%; }

.continuity-stage-a { left: 8%; top: 44%; }
.continuity-stage-b { left: 32%; top: 44%; animation-delay: 0.22s; }
.continuity-stage-c { left: 56%; top: 44%; animation-delay: 0.44s; }
.continuity-stage-d { left: 80%; top: 44%; animation-delay: 0.66s; }

.continuity-runner {
  position: absolute;
  top: 42%;
  left: 8%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd8da 0 46%, rgba(255, 216, 218, 0.2) 47% 100%);
  box-shadow: 0 0 0 10px rgba(255, 108, 114, 0.12);
  animation: continuity-run 3.5s cubic-bezier(0.4, 0.05, 0.2, 0.95) infinite;
}

.continuity-vault-cells {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.continuity-vault-cells b {
  height: 36px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.strategy-line-a { left: 12%; top: 54%; width: 52%; transform: rotate(-8deg); }
.strategy-line-b { left: 46%; top: 42%; width: 26%; transform: rotate(16deg); }

.strategy-milestone-a { left: 12%; top: 54%; }
.strategy-milestone-b { left: 34%; top: 48%; animation-delay: 0.2s; }
.strategy-milestone-c { left: 54%; top: 40%; animation-delay: 0.4s; }
.strategy-milestone-d { left: 74%; top: 28%; animation-delay: 0.6s; }

.strategy-tracer {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffe8e8;
  box-shadow: 0 0 0 8px rgba(255, 232, 232, 0.09);
  animation: strategy-run 3.8s linear infinite;
}

.strategy-matrix {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.strategy-matrix b {
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(17, 17, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.strategy-signal-bars {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 40%;
  display: flex;
  align-items: end;
  gap: 0.45rem;
}

.strategy-signal-bars b:nth-child(1) { height: 26%; }
.strategy-signal-bars b:nth-child(2) { height: 52%; animation-delay: 0.16s; }
.strategy-signal-bars b:nth-child(3) { height: 74%; animation-delay: 0.32s; }

.service-detail-enhanced-visual .scene-card,
.service-detail-enhanced-visual .scene-card::before,
.service-detail-enhanced-visual .visual-grid,
.service-detail-enhanced-visual .visual-orb {
  pointer-events: none;
}

@media (max-width: 1024px) {
  .managed-support-main,
  .cybersecurity-main,
  .cloud-main,
  .infrastructure-main,
  .continuity-main,
  .strategy-main {
    left: 7%;
    width: 58%;
    height: 44%;
  }

  .managed-support-side,
  .cybersecurity-side,
  .cloud-side,
  .infrastructure-side,
  .continuity-side,
  .strategy-side {
    right: 7%;
    width: 24%;
    height: 30%;
  }
}

@media (max-width: 780px) {
  .managed-support-main,
  .cybersecurity-main,
  .cloud-main,
  .infrastructure-main,
  .continuity-main,
  .strategy-main {
    left: 6%;
    width: 78%;
    height: 45%;
    bottom: 12%;
  }

  .managed-support-side,
  .cybersecurity-side,
  .cloud-side,
  .infrastructure-side,
  .continuity-side,
  .strategy-side {
    right: 6%;
    width: 36%;
    height: 28%;
    top: 12%;
  }

  .services-status-row,
  .cloud-service-tiles,
  .managed-status-grid,
  .strategy-matrix {
    gap: 0.5rem;
  }

  .visual-chip {
    font-size: 0.72rem;
  }
}

.blog-newsroom-stage {
  position: absolute;
  inset: 6.5%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 12, 0.84);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.blog-newsroom-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 88, 94, 0.14), transparent 22%),
    radial-gradient(circle at 76% 28%, rgba(255, 88, 94, 0.12), transparent 20%),
    radial-gradient(circle at 68% 74%, rgba(255, 88, 94, 0.18), transparent 24%);
  filter: blur(14px);
  opacity: 0.94;
  animation: blog-stage-breathe 4.6s ease-in-out infinite;
}

.blog-newsroom-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 88, 94, 0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: blog-scanfield 4.8s ease-in-out infinite;
  pointer-events: none;
}

.blog-stage-chip {
  top: 1.15rem;
  left: 1.15rem;
}

.blog-newsroom-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.46;
}

.blog-news-ticker {
  position: absolute;
  left: 1.4rem;
  right: 21%;
  top: 4.1rem;
  display: grid;
  gap: 0.8rem;
}

.blog-ticker-line {
  position: relative;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 88, 94, 0.2), rgba(255, 255, 255, 0.04));
}

.blog-ticker-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 204, 208, 0.55) 44%, transparent 62%);
  transform: translateX(-140%);
  animation: blog-ticker-glide 2.8s linear infinite;
}

.blog-ticker-line-a { width: 84%; }
.blog-ticker-line-b { width: 68%; }
.blog-ticker-line-c { width: 92%; }
.blog-ticker-line-d { width: 58%; }
.blog-ticker-line-b::after { animation-delay: 0.22s; }
.blog-ticker-line-c::after { animation-delay: 0.44s; }
.blog-ticker-line-d::after { animation-delay: 0.66s; }

.blog-story-wall {
  position: absolute;
  inset: 8.6rem 1.4rem 7.4rem 1.4rem;
}

.blog-story-sheet {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 22, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.blog-story-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(122deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
  transform: translateX(-140%);
  animation: panel-sheen 4.4s ease-in-out infinite;
}

.blog-story-sheet-featured {
  left: 0;
  top: 0;
  width: 54%;
  height: 62%;
  animation: blog-sheet-drift-a 5s ease-in-out infinite;
}

.blog-story-sheet-side {
  right: 0;
  top: 4%;
  width: 28%;
  height: 46%;
  animation: blog-sheet-drift-b 5s ease-in-out 0.32s infinite;
}

.blog-story-sheet-brief {
  right: 16%;
  bottom: 2%;
  width: 28%;
  height: 22%;
  animation: blog-sheet-drift-c 5s ease-in-out 0.64s infinite;
}

.blog-sheet-media,
.blog-sheet-kicker,
.blog-sheet-title,
.blog-sheet-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
}

.blog-sheet-media {
  top: 1rem;
  height: 46%;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 88, 94, 0.14)),
    rgba(11, 11, 15, 0.92);
  overflow: hidden;
}

.blog-sheet-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 18%, transparent 18% 22%, rgba(255, 255, 255, 0.05) 22% 38%, transparent 38% 42%, rgba(255, 255, 255, 0.05) 42% 58%, transparent 58% 100%),
    linear-gradient(120deg, transparent 0%, rgba(255, 88, 94, 0.32) 46%, transparent 64%);
  transform: translateX(-120%);
  animation: blog-media-scan 3.4s ease-in-out infinite;
}

.blog-sheet-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 16% 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.12), rgba(255, 88, 94, 0.74), rgba(255, 88, 94, 0.12));
  transform: rotate(-18deg);
}

.blog-sheet-media-small {
  height: 34%;
}

.blog-sheet-media-small::after {
  inset: auto 18% 22% 18%;
  transform: rotate(16deg);
}

.blog-sheet-kicker {
  top: calc(46% + 1.8rem);
  width: 92px;
  right: auto;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 88, 94, 0.64), rgba(255, 255, 255, 0.04));
  animation: rail-blink 1.6s ease-in-out infinite;
}

.blog-sheet-kicker-small {
  top: calc(34% + 1.7rem);
  width: 74px;
}

.blog-sheet-kicker-mini {
  top: 1rem;
  width: 62px;
}

.blog-sheet-title {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 88, 94, 0.2), rgba(255, 255, 255, 0.05));
}

.blog-sheet-title-a { top: calc(46% + 3.2rem); width: auto; }
.blog-sheet-title-b { top: calc(46% + 4.8rem); right: 20%; }
.blog-sheet-title-c { top: calc(34% + 3rem); right: 10%; }
.blog-sheet-title-d { top: calc(34% + 4.55rem); right: 28%; }
.blog-sheet-title-e { top: 2.6rem; right: 16%; }
.blog-sheet-title-f { top: 4rem; right: 34%; }

.blog-sheet-meta {
  bottom: 1rem;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.42), rgba(255, 255, 255, 0.05));
}

.blog-sheet-meta-small {
  right: 44%;
}

.blog-insight-halo {
  position: absolute;
  top: 4.1rem;
  right: 1.35rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.blog-insight-halo span,
.blog-insight-halo i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.blog-insight-halo span {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-insight-halo span:nth-child(2) { inset: 18%; }
.blog-insight-halo span:nth-child(3) { inset: 36%; }

.blog-insight-halo i {
  inset: -8%;
  background: conic-gradient(from 30deg, transparent 0 286deg, rgba(255, 88, 94, 0.34) 322deg, rgba(255, 88, 94, 0.04) 360deg);
  animation: blog-halo-spin 3.6s linear infinite;
}

.blog-halo-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 95, 101, 0.96);
  box-shadow: 0 0 0 12px rgba(255, 95, 101, 0.08);
  animation: chart-ping 2.1s ease-out infinite;
}

.blog-halo-node-a { left: 70%; top: 18%; }
.blog-halo-node-b { right: 14%; top: 50%; animation-delay: 0.45s; }
.blog-halo-node-c { left: 42%; bottom: 14%; animation-delay: 0.9s; }

.blog-trend-board {
  position: absolute;
  right: 1.55rem;
  bottom: 1.45rem;
  width: 218px;
  height: 170px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 22, 0.88);
  overflow: hidden;
}

.blog-trend-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
}

.blog-trend-bars {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 54%;
  display: flex;
  align-items: end;
  gap: 0.42rem;
}

.blog-trend-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 96, 103, 0.98), rgba(132, 18, 22, 0.28));
  transform-origin: center bottom;
  animation: bar-pulse 1.6s ease-in-out infinite;
}

.blog-trend-bars span:nth-child(1) { height: 22%; }
.blog-trend-bars span:nth-child(2) { height: 42%; animation-delay: 0.14s; }
.blog-trend-bars span:nth-child(3) { height: 68%; animation-delay: 0.28s; }
.blog-trend-bars span:nth-child(4) { height: 52%; animation-delay: 0.42s; }
.blog-trend-bars span:nth-child(5) { height: 84%; animation-delay: 0.56s; }

.blog-trend-line {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.1), rgba(255, 88, 94, 0.78), rgba(255, 88, 94, 0.08));
}

.blog-trend-line-a {
  left: 12%;
  top: 52%;
  width: 66%;
  transform: rotate(-18deg);
  animation: blog-trend-tilt-a 3.6s ease-in-out infinite;
}

.blog-trend-line-b {
  left: 40%;
  top: 38%;
  width: 34%;
  transform: rotate(20deg);
  animation: blog-trend-tilt-b 3.6s ease-in-out 0.4s infinite;
}

.blog-trend-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffe3e5;
  box-shadow: 0 0 0 9px rgba(255, 227, 229, 0.08);
}

.blog-trend-point-a { animation: blog-trend-point-a 3.8s ease-in-out infinite; }
.blog-trend-point-b { animation: blog-trend-point-b 3.8s ease-in-out 1.2s infinite; }

.blog-reading-rails {
  position: absolute;
  left: 1.4rem;
  right: 25%;
  bottom: 1.5rem;
  height: 94px;
}

.blog-rail {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.34), rgba(255, 255, 255, 0.04));
}

.blog-rail-a { top: 0; animation: blog-rail-wave-a 2.6s ease-in-out infinite; }
.blog-rail-b { top: 24px; animation: blog-rail-wave-b 2.6s ease-in-out 0.25s infinite; }
.blog-rail-c { top: 48px; animation: blog-rail-wave-a 2.6s ease-in-out 0.5s infinite; }
.blog-rail-d { top: 72px; animation: blog-rail-wave-b 2.6s ease-in-out 0.75s infinite; }

.blog-rail-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe4e6;
  box-shadow: 0 0 0 8px rgba(255, 116, 121, 0.11);
}

.blog-rail-pulse-a { animation: blog-rail-flow-a 3.2s linear infinite; }
.blog-rail-pulse-b { animation: blog-rail-flow-b 3.5s linear infinite 0.7s; }
.blog-rail-pulse-c { animation: blog-rail-flow-c 3.9s linear infinite 1.2s; }

.blog-scanfield {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 88, 94, 0.12) 44%, transparent 60%);
  transform: translateX(-130%);
  animation: blog-scanfield 4.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

.blog-graphic-stage {
  position: absolute;
  inset: 6.5%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 12, 0.84);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.blog-graphic-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 88, 94, 0.12), transparent 22%),
    radial-gradient(circle at 70% 34%, rgba(255, 88, 94, 0.16), transparent 26%),
    radial-gradient(circle at 62% 72%, rgba(255, 88, 94, 0.18), transparent 24%);
  filter: blur(16px);
  opacity: 0.92;
  animation: blog-stage-breathe 4.8s ease-in-out infinite;
}

.blog-graphic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}

.blog-article-stack {
  position: absolute;
  left: 1.8rem;
  top: 5.2rem;
  width: 42%;
  height: 44%;
}

.blog-article-sheet {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(18, 18, 22, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.blog-article-sheet-back {
  transform: translate(1.2rem, -1rem) rotate(7deg);
  opacity: 0.4;
}

.blog-article-sheet-mid {
  transform: translate(0.5rem, -0.45rem) rotate(3deg);
  opacity: 0.7;
}

.blog-article-sheet-front {
  animation: blog-sheet-float 4.6s ease-in-out infinite;
}

.blog-article-sheet-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 62%);
  transform: translateX(-140%);
  animation: blog-paper-sheen 3.8s ease-in-out infinite;
}

.blog-article-line,
.blog-article-accent {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  border-radius: 999px;
}

.blog-article-line {
  height: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 88, 94, 0.22), rgba(255, 255, 255, 0.05));
}

.blog-article-line-a { top: 2rem; right: 24%; }
.blog-article-line-b { top: 4rem; right: 10%; }
.blog-article-line-c { top: 6rem; right: 18%; }
.blog-article-line-d { top: 8rem; right: 34%; }

.blog-article-accent {
  left: 1.4rem;
  right: 3.2rem;
  bottom: 1.6rem;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.88), rgba(255, 88, 94, 0.08));
  transform: rotate(-18deg);
  transform-origin: left center;
}

.blog-signal-network {
  position: absolute;
  inset: 19% 12% 22% 36%;
}

.blog-network-link {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.7), rgba(255, 88, 94, 0.08));
  box-shadow: 0 0 20px rgba(255, 88, 94, 0.12);
}

.blog-network-link-a { left: 4%; top: 16%; width: 34%; transform: rotate(16deg); }
.blog-network-link-b { left: 34%; top: 12%; width: 28%; transform: rotate(-12deg); }
.blog-network-link-c { left: 48%; top: 44%; width: 26%; transform: rotate(18deg); }
.blog-network-link-d { left: 20%; top: 62%; width: 42%; transform: rotate(-14deg); }

.blog-network-node,
.blog-chart-orb {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 96, 103, 0.98);
  box-shadow: 0 0 0 12px rgba(255, 96, 103, 0.08);
  animation: chart-ping 2.2s ease-out infinite;
}

.blog-network-node-a { left: 0; top: 12%; }
.blog-network-node-b { left: 34%; top: 5%; animation-delay: 0.3s; }
.blog-network-node-c { left: 60%; top: 14%; animation-delay: 0.6s; }
.blog-network-node-d { left: 76%; top: 38%; animation-delay: 0.9s; }
.blog-network-node-e { left: 44%; top: 58%; animation-delay: 1.2s; }

.blog-network-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffe4e6;
  box-shadow: 0 0 0 10px rgba(255, 228, 230, 0.08);
}

.blog-network-pulse-a { animation: blog-network-run-a 3.2s linear infinite; }
.blog-network-pulse-b { animation: blog-network-run-b 3.4s linear infinite 1.1s; }

.blog-focus-halo {
  position: absolute;
  top: 8.6rem;
  right: 2.2rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.blog-focus-halo span,
.blog-focus-halo i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.blog-focus-halo span {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-focus-halo span:nth-child(2) { inset: 18%; }
.blog-focus-halo span:nth-child(3) { inset: 36%; }

.blog-focus-halo i {
  inset: -8%;
  background: conic-gradient(from 0deg, transparent 0 286deg, rgba(255, 88, 94, 0.34) 322deg, rgba(255, 88, 94, 0.04) 360deg);
  animation: blog-focus-spin 3.2s linear infinite;
}

.blog-wave-field {
  position: absolute;
  left: 1.8rem;
  right: 28%;
  bottom: 1.9rem;
  height: 92px;
}

.blog-wave-lane {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 88, 94, 0.32), rgba(255, 255, 255, 0.04));
}

.blog-wave-lane-a { top: 0; animation: blog-wave-lane-a 2.5s ease-in-out infinite; }
.blog-wave-lane-b { top: 28px; animation: blog-wave-lane-b 2.5s ease-in-out 0.25s infinite; }
.blog-wave-lane-c { top: 56px; animation: blog-wave-lane-a 2.5s ease-in-out 0.5s infinite; }

.blog-wave-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffe4e6;
  box-shadow: 0 0 0 10px rgba(255, 228, 230, 0.08);
}

.blog-wave-pulse-a { animation: blog-wave-run-a 3s linear infinite; }
.blog-wave-pulse-b { animation: blog-wave-run-b 3.3s linear infinite 0.8s; }
.blog-wave-pulse-c { animation: blog-wave-run-c 3.7s linear infinite 1.1s; }

.blog-insight-chart {
  position: absolute;
  right: 1.8rem;
  bottom: 1.7rem;
  width: 248px;
  height: 190px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 22, 0.88);
  overflow: hidden;
}

.blog-insight-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.24;
}

.blog-chart-bars {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 56%;
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

.blog-chart-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 95, 101, 0.98), rgba(132, 18, 22, 0.3));
  transform-origin: center bottom;
  animation: bar-pulse 1.6s ease-in-out infinite;
}

.blog-chart-bars span:nth-child(1) { height: 18%; }
.blog-chart-bars span:nth-child(2) { height: 34%; animation-delay: 0.12s; }
.blog-chart-bars span:nth-child(3) { height: 58%; animation-delay: 0.24s; }
.blog-chart-bars span:nth-child(4) { height: 42%; animation-delay: 0.36s; }
.blog-chart-bars span:nth-child(5) { height: 76%; animation-delay: 0.48s; }

.blog-chart-trace {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.78), rgba(255, 88, 94, 0.08));
}

.blog-chart-trace-a {
  left: 16%;
  top: 56%;
  width: 62%;
  transform: rotate(-16deg);
  animation: blog-chart-tilt-a 3.4s ease-in-out infinite;
}

.blog-chart-trace-b {
  left: 44%;
  top: 42%;
  width: 28%;
  transform: rotate(20deg);
  animation: blog-chart-tilt-b 3.4s ease-in-out 0.4s infinite;
}

.blog-chart-orb-a { animation: blog-chart-orb-a 3.6s ease-in-out infinite; }
.blog-chart-orb-b { animation: blog-chart-orb-b 3.6s ease-in-out 1s infinite; }
.blog-chart-orb-c { animation: blog-chart-orb-c 3.6s ease-in-out 2s infinite; }

.blog-stage-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 88, 94, 0.12) 44%, transparent 60%);
  transform: translateX(-130%);
  animation: blog-stage-beam 4s ease-in-out infinite;
  mix-blend-mode: screen;
}

.faq-matrix-card {
  left: 8%;
  bottom: 14%;
  width: 62%;
  height: 34%;
}

.faq-rows {
  position: absolute;
  inset: 30% 10% 16% 10%;
  display: grid;
  gap: 0.8rem;
}

.faq-rows span {
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 72%, rgba(255, 88, 94, 0.18) 72% 82%, rgba(255, 255, 255, 0.06) 82%);
  animation: faq-row 1.9s ease-in-out infinite;
}

.faq-rows span:nth-child(2) { animation-delay: 0.14s; }
.faq-rows span:nth-child(3) { animation-delay: 0.28s; }
.faq-rows span:nth-child(4) { animation-delay: 0.42s; }
.faq-rows span:nth-child(5) { animation-delay: 0.56s; }

.faq-glide {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 88, 94, 0.14) 42%, transparent 60%);
  transform: translateX(-120%);
  animation: panel-sheen 3.4s ease-in-out infinite;
}

.faq-core-card {
  right: 8%;
  top: 14%;
  width: 28%;
  height: 30%;
}

.careers-ladder-card {
  left: 8%;
  bottom: 12%;
  width: 64%;
  height: 36%;
}

.careers-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.52), rgba(255, 88, 94, 0.08));
}

.careers-link-a { left: 18%; width: 22%; top: 64%; transform: rotate(-26deg); }
.careers-link-b { left: 38%; width: 22%; top: 50%; transform: rotate(-24deg); }
.careers-link-c { left: 58%; width: 20%; top: 34%; transform: rotate(-22deg); }

.careers-step {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 93, 99, 0.98), rgba(140, 18, 22, 0.34));
  box-shadow: 0 0 0 8px rgba(255, 93, 99, 0.08);
}

.careers-step-a { left: 16%; bottom: 16%; }
.careers-step-b { left: 36%; bottom: 28%; }
.careers-step-c { left: 56%; bottom: 40%; }
.careers-step-d { left: 74%; bottom: 54%; }

.careers-beacon {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff0f1;
  box-shadow: 0 0 0 10px rgba(255, 240, 241, 0.08);
  animation: careers-beacon-run 2.8s linear infinite;
}

.careers-orbit-card {
  right: 8%;
  top: 12%;
  width: 28%;
  height: 30%;
}

.testimonials-wave-card {
  left: 8%;
  bottom: 12%;
  width: 64%;
  height: 36%;
}

.testimonials-arc {
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(255, 88, 94, 0.24);
  border-color: rgba(255, 88, 94, 0.24) transparent transparent transparent;
}

.testimonials-arc-a { left: 14%; right: 34%; bottom: 26%; height: 42%; animation: trust-arc 2.8s ease-in-out infinite; }
.testimonials-arc-b { left: 34%; right: 20%; bottom: 22%; height: 46%; animation: trust-arc 2.8s ease-in-out 0.5s infinite; }
.testimonials-arc-c { left: 56%; right: 10%; bottom: 18%; height: 38%; animation: trust-arc 2.8s ease-in-out 1s infinite; }

.testimonials-signal {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff666b;
  box-shadow: 0 0 0 10px rgba(255, 102, 107, 0.1);
}

.testimonials-signal-a { left: 24%; bottom: 30%; animation: trust-signal-a 2.6s linear infinite; }
.testimonials-signal-b { left: 50%; bottom: 34%; animation: trust-signal-b 2.6s linear infinite 0.7s; }
.testimonials-signal-c { right: 18%; bottom: 28%; animation: trust-signal-c 2.6s linear infinite 1.4s; }

.testimonials-core-card {
  right: 8%;
  top: 13%;
  width: 28%;
  height: 30%;
}

.testimonials-core span {
  animation: testimonial-echo 2.4s ease-in-out infinite;
}

.testimonials-core span:nth-child(2) {
  animation-delay: 0.3s;
}

.testimonials-core span:nth-child(3) {
  animation-delay: 0.6s;
}

.client-tools .page-visual,
.page-visual-client-tools { }

.tools-gateway-card {
  left: 8%;
  bottom: 12%;
  width: 64%;
  height: 38%;
}

.tools-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 88, 94, 0.08), rgba(255, 88, 94, 0.56), rgba(255, 88, 94, 0.08));
}

.tools-link-a { left: 28%; width: 22%; top: 42%; transform: rotate(-24deg); }
.tools-link-b { left: 28%; width: 22%; top: 56%; transform: rotate(12deg); }
.tools-link-c { left: 46%; width: 20%; top: 49%; transform: rotate(0deg); }

.tools-hub {
  position: absolute;
  left: 42%;
  top: 44%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 102, 107, 0.96);
  box-shadow: 0 0 0 14px rgba(255, 102, 107, 0.1);
  animation: chart-ping 1.8s ease-out infinite;
}

.tools-node-a { left: 16%; top: 28%; }
.tools-node-b { left: 16%; bottom: 20%; animation-delay: 0.3s; }
.tools-node-c { right: 18%; top: 42%; animation-delay: 0.6s; }
.tools-node-d { right: 18%; bottom: 18%; animation-delay: 0.9s; }

.tools-pulse-a { animation: tools-pulse-a 2.2s linear infinite; }
.tools-pulse-b { animation: tools-pulse-b 2.2s linear infinite 1s; }

.tools-lock-card {
  right: 8%;
  top: 12%;
  width: 28%;
  height: 30%;
}

.tools-lock-core span {
  animation: ring-breathe 2s ease-in-out infinite;
}

.tools-lock-core span:nth-child(2) {
  animation-delay: 0.2s;
}

.page-section {
  padding-top: 4.6rem;
}

.page-grid-3,
.page-grid-2,
.testimonial-page-grid,
.tools-grid,
.link-card-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.page-card,
.tool-card,
.testimonial-page-card,
.service-link-card,
.faq-card {
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.page-card h3,
.tool-card h3,
.testimonial-page-card h3,
.service-link-card h3 {
  margin: 0 0 0.8rem;
}

.page-card p,
.tool-card p,
.testimonial-page-card p,
.service-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-card .page-kicker,
.page-card .meta-row,
.job-card .meta-row {
  margin-bottom: 0.9rem;
}

.page-kicker,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #e4dcdc;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-card .button,
.job-card .button {
  margin-top: 1rem;
}

.blog-feature {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.blog-feature .page-card:first-child {
  min-height: 100%;
}

[data-blog-grid] {
  align-items: stretch;
  margin-top: 0.35rem;
}

[data-blog-grid] > *,
.blog-feature > * {
  min-width: 0;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.blog-post-card-featured {
  min-height: 100%;
}

.blog-post-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(255, 90, 96, 0.2), rgba(255, 90, 96, 0) 56%),
    rgba(11, 11, 13, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-post-card-featured .blog-post-media {
  min-height: 230px;
}

.blog-post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0), rgba(5, 5, 7, 0.22) 55%, rgba(5, 5, 7, 0.5));
  pointer-events: none;
}

.blog-post-media.is-placeholder {
  isolation: isolate;
}

.blog-post-media-glow,
.blog-post-media-grid {
  position: absolute;
  inset: 0;
}

.blog-post-media-glow::before,
.blog-post-media-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.blog-post-media-glow::before {
  width: 42%;
  height: 62%;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 88, 94, 0.28), rgba(255, 88, 94, 0) 72%);
}

.blog-post-media-glow::after {
  width: 32%;
  height: 46%;
  left: 14%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 88, 94, 0.18), rgba(255, 88, 94, 0) 72%);
}

.blog-post-media-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.blog-post-body {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  flex: 1;
  min-width: 0;
  padding: 1.35rem 1.4rem 1.45rem;
}

.blog-post-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.16;
  text-wrap: balance;
}

.blog-post-title-link {
  color: inherit;
  text-decoration: none;
}

.blog-post-title-link:hover {
  color: #fff;
}

.blog-post-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.blog-post-card-featured p {
  -webkit-line-clamp: 5;
}

.blog-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.15rem;
}

.blog-post-card .button {
  margin-top: 0;
}

.blog-article-card {
  padding: 1.7rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.blog-post-hero-visual {
  position: relative;
  min-height: 456px;
  margin-top: 0.18rem;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(10, 10, 12, 0.96);
  box-shadow: var(--shadow);
}

.blog-post-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 9, 0.04), rgba(7, 7, 9, 0.24)),
    linear-gradient(140deg, rgba(255, 88, 94, 0.08), transparent 52%);
  pointer-events: none;
}

.blog-article-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(12, 12, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.blog-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 78%, rgba(255, 88, 94, 0.2), rgba(255, 88, 94, 0) 28%),
    radial-gradient(circle at 76% 26%, rgba(255, 88, 94, 0.24), rgba(255, 88, 94, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(10, 10, 12, 0.98);
}

.blog-article-media-placeholder span {
  position: absolute;
  inset: auto 12% 14%;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 99, 105, 0.88), rgba(126, 19, 24, 0.8));
}

.blog-article-media-placeholder span:nth-child(1) {
  left: 12%;
  width: 18%;
  height: 24%;
}

.blog-article-media-placeholder span:nth-child(2) {
  left: 36%;
  width: 22%;
  height: 42%;
}

.blog-article-media-placeholder span:nth-child(3) {
  left: 64%;
  width: 18%;
  height: 32%;
}

.blog-article-body {
  max-width: 860px;
  margin: 1.25rem auto 0;
}

.rich-text {
  display: grid;
  gap: 0.9rem;
}

.rich-text :where(p, div, h2, h3, h4, ul, ol, figure, blockquote) {
  margin: 0;
}

.rich-text :where(p, div):empty {
  display: none;
}

.rich-text br + br {
  display: none;
}

.rich-text h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.rich-text p,
.rich-text li {
  color: var(--muted);
  line-height: 1.72;
}

.rich-text ul,
.rich-text ol {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.42rem;
}

.blog-inline-figure {
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0.2rem 0 0.35rem;
  padding: 0.95rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(11, 11, 14, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.blog-inline-figure img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 10, 0.9);
}

.blog-inline-figure figcaption {
  margin-top: 0.85rem;
  color: #c8bfbf;
  font-size: 0.95rem;
  line-height: 1.7;
}

.job-card,
.culture-card {
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 12, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.job-card h3,
.culture-card h3 {
  margin: 0 0 0.8rem;
}

.job-card p,
.culture-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.stack-list {
  display: grid;
  gap: 1rem;
}

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

.empty-note {
  margin-top: 1rem;
  color: var(--muted);
}

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

.metric-box {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.metric-box strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.metric-box span {
  color: var(--muted);
}

.bullet-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.bullet-list li {
  padding-left: 1.4rem;
  position: relative;
  color: #ddd5d5;
  line-height: 1.7;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff646b, #a20f15);
  box-shadow: 0 0 0 6px rgba(255, 100, 107, 0.08);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.tools-grid .button,
.service-link-card .button,
.testimonial-page-card .button {
  margin-top: auto;
}

.location-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-section-intro {
  margin-bottom: 1.35rem;
}

.page-section-intro .eyebrow {
  margin-bottom: 0.85rem;
}

.page-section-intro h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  line-height: 1.08;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
  align-items: center;
}

.location-link-grid .service-link-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0.7rem;
}

.location-link-grid .service-link-card p {
  margin-bottom: 1.15rem;
}

.about-focus-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  grid-template-rows: auto minmax(320px, 1fr);
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  align-items: start;
}

.about-focus-chip {
  position: absolute;
  top: 1.15rem;
  left: 1.35rem;
  z-index: 6;
}

.about-focus-summary,
.about-focus-card,
.about-focus-map {
  position: relative;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(12, 11, 15, 0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 38px rgba(0,0,0,0.2);
}

.about-focus-summary {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-top: 2.7rem;
  padding: 1.2rem 1.25rem;
  z-index: 3;
}

.about-focus-summary span,
.about-focus-card span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 229, 231, 0.68);
}

.about-focus-summary strong,
.about-focus-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  color: #f7f1f2;
}

.about-focus-summary strong {
  font-size: 1.2rem;
  line-height: 1.16;
}

.about-focus-summary small {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(238, 229, 231, 0.78);
}

.about-focus-map {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  min-height: 350px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 110, 118, 0.18), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(255, 110, 118, 0.14), transparent 28%),
    linear-gradient(150deg, rgba(24, 16, 20, 0.96), rgba(9, 9, 12, 0.98));
}

.about-focus-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,119,128,0), rgba(255,119,128,0.14), rgba(255,119,128,0));
  transform: translateX(-120%);
  animation: aboutCoverageSweep 7.5s linear infinite;
}

.about-focus-route {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 120, 128, 0.12), rgba(255, 120, 128, 0.95), rgba(255, 120, 128, 0.16));
  box-shadow: 0 0 24px rgba(255, 96, 110, 0.3);
}

.about-focus-route.route-main {
  left: 10%;
  top: 48%;
  width: 79%;
  transform: rotate(13deg);
}

.about-focus-route.route-secondary {
  left: 15%;
  top: 66%;
  width: 57%;
  transform: rotate(8deg);
  opacity: 0.82;
}

.about-focus-city,
.about-focus-node,
.about-focus-pulse,
.about-focus-runner {
  position: absolute;
}

.about-focus-city {
  z-index: 4;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  color: rgba(244, 236, 237, 0.9);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.24);
  animation: aboutLabelPulse 4.2s ease-in-out infinite;
}

.about-focus-city.city-vancouver { left: 13%; top: 34%; transform: translate(-20px, -26px); }
.about-focus-city.city-surrey { left: 24%; top: 30%; transform: translate(-8px, -26px); }
.about-focus-city.city-langley { left: 36%; top: 35%; transform: translate(-6px, -24px); }
.about-focus-city.city-abbotsford { left: 53%; top: 50%; transform: translate(-10px, -26px); }
.about-focus-city.city-chilliwack { left: 70%; top: 62%; transform: translate(-8px, -24px); }
.about-focus-city.city-hope { left: 83%; top: 56%; transform: translate(-6px, -26px); }

.about-focus-node {
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6d78;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 18px rgba(255, 96, 110, 0.42);
}

.about-focus-node.node-vancouver { left: 13%; top: 42%; }
.about-focus-node.node-surrey { left: 24%; top: 37%; }
.about-focus-node.node-langley { left: 36%; top: 43%; }
.about-focus-node.node-abbotsford { left: 53%; top: 55%; width: 14px; height: 14px; }
.about-focus-node.node-chilliwack { left: 70%; top: 66%; }
.about-focus-node.node-hope { left: 83%; top: 60%; }

.about-focus-pulse {
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255, 116, 124, 0.34);
  animation: aboutCoveragePulse 3.9s ease-out infinite;
}

.about-focus-pulse.pulse-vancouver { left: 11.1%; top: 39.2%; width: 28px; height: 28px; }
.about-focus-pulse.pulse-abbotsford { left: 51.5%; top: 51.2%; width: 34px; height: 34px; animation-delay: 0.9s; }
.about-focus-pulse.pulse-hope { left: 80.8%; top: 56.2%; width: 30px; height: 30px; animation-delay: 1.7s; }

.about-focus-runner {
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 242, 0.98), rgba(255, 122, 130, 0.96) 58%, rgba(255, 122, 130, 0) 78%);
  box-shadow: 0 0 22px rgba(255, 105, 116, 0.55);
}

.about-focus-runner.runner-main {
  left: 15%;
  top: 45%;
  animation: aboutStageRunnerMain 7.2s linear infinite;
}

.about-focus-runner.runner-secondary {
  left: 28%;
  top: 62%;
  animation: aboutStageRunnerSecondary 8.5s linear infinite;
}

.about-focus-metrics {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 1rem;
  padding-top: 2.7rem;
}

.about-focus-card {
  padding: 1.05rem 1.1rem 1.1rem;
  align-self: start;
  animation: aboutMetricFloat 5.8s ease-in-out infinite;
}

.about-focus-card:nth-child(2) {
  animation-delay: 0.8s;
}

.about-focus-card strong {
  font-size: 1rem;
  line-height: 1.38;
  max-width: 13ch;
}

.visual-variant-location-focus {
  position: absolute;
  inset: 0;
  z-index: 4;
  min-height: 0;
}

.location-focus-stage {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  padding: 1.35rem;
  isolation: isolate;
}

.location-focus-stage::before,
.location-focus-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.location-focus-stage::before {
  width: 36rem;
  height: 36rem;
  left: 48%;
  top: 16%;
  background: radial-gradient(circle, rgba(255, 86, 96, 0.2), rgba(255, 86, 96, 0.06) 36%, transparent 68%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
  animation: locationHeroBloom 7.8s ease-in-out infinite;
}

.location-focus-stage::after {
  width: 22rem;
  height: 22rem;
  right: -4rem;
  bottom: 1rem;
  border: 1px solid rgba(255, 116, 124, 0.12);
  box-shadow: inset 0 0 60px rgba(255, 86, 96, 0.06);
  animation: locationHeroRing 9.5s linear infinite;
}

.location-focus-chip {
  position: absolute;
  top: 1.15rem;
  left: 1.35rem;
  z-index: 7;
}

.location-focus-card,
.location-focus-map {
  position: relative;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 110, 118, 0.18), transparent 32%),
    radial-gradient(circle at 19% 18%, rgba(255, 110, 118, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(24, 16, 20, 0.96), rgba(9, 9, 12, 0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 44px rgba(0,0,0,0.22);
  overflow: hidden;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.location-focus-card::before,
.location-focus-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,119,128,0), rgba(255,119,128,0.13), rgba(255,119,128,0));
  transform: translateX(-120%);
  animation: aboutCoverageSweep 7.5s linear infinite;
}

.location-focus-card {
  position: absolute;
  padding: 1.15rem 1.25rem 1.15rem;
  backdrop-filter: blur(18px);
  animation: locationCardFloat 6.8s ease-in-out infinite;
}

.location-focus-card-world {
  left: 1.35rem;
  top: 4.25rem;
  width: min(46%, 23rem);
}

.location-focus-card-bc {
  right: 1.35rem;
  top: 4.25rem;
  width: min(42%, 22rem);
  animation-delay: 0.75s;
}

.location-focus-card-city {
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 1.6rem;
  animation-delay: 1.1s;
}

.location-focus-card span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 229, 231, 0.68);
}

.location-focus-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.14rem;
  line-height: 1.16;
  color: #f7f1f2;
}

.location-focus-card small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 0.6rem;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.56;
  color: rgba(238, 229, 231, 0.78);
}

.location-focus-map {
  position: absolute;
  inset: 14.1rem 1.35rem 6.25rem;
  border-radius: 2.15rem;
  background:
    radial-gradient(circle at var(--focus-x, 56%) var(--focus-y, 52%), rgba(255, 92, 102, 0.3), transparent 22%),
    radial-gradient(circle at 18% 36%, rgba(255, 120, 128, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(22, 16, 20, 0.92), rgba(8, 8, 11, 0.98));
  z-index: 1;
}

.location-focus-route {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 120, 128, 0.12), rgba(255, 120, 128, 0.95), rgba(255, 120, 128, 0.16));
  box-shadow: 0 0 24px rgba(255, 96, 110, 0.3);
  animation: locationRouteGlow 3.2s ease-in-out infinite;
}

.location-focus-route.route-main {
  left: 10%;
  top: 53%;
  width: 78%;
  transform: rotate(12deg);
}

.location-focus-route.route-secondary {
  left: 18%;
  top: 67%;
  width: 58%;
  transform: rotate(8deg);
  opacity: 0.82;
  animation-delay: 0.5s;
}

.location-focus-city,
.location-focus-node,
.location-focus-runner,
.location-focus-pulse,
.location-focus-map-label,
.location-focus-signature {
  position: absolute;
}

.location-focus-map-label {
  left: 1.2rem;
  top: 1.05rem;
  z-index: 5;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 240, 242, 0.72);
}

.location-focus-city {
  z-index: 4;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(244, 236, 237, 0.9);
  text-shadow: 0 0 18px rgba(0,0,0,0.24);
  animation: aboutLabelPulse 4.2s ease-in-out infinite;
}

.location-focus-city.city-vancouver { left: 9%; top: 43%; transform: translate(-8px, 18px); }
.location-focus-city.city-surrey { left: 24%; top: 31%; transform: translate(-4px, -24px); }
.location-focus-city.city-langley { left: 39%; top: 38%; transform: translate(-4px, -26px); }
.location-focus-city.city-abbotsford { left: 56%; top: 50%; transform: translate(-8px, -27px); }
.location-focus-city.city-chilliwack { left: 73%; top: 62%; transform: translate(-10px, 17px); }
.location-focus-city.city-hope { left: 88%; top: 55%; transform: translate(-24px, -27px); }

.location-focus-node {
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6d78;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 18px rgba(255,96,110,0.42);
  animation: locationNodePulse 2.8s ease-in-out infinite;
}

.location-focus-node.node-vancouver { left: 11%; top: 48%; }
.location-focus-node.node-surrey { left: 26%; top: 38%; animation-delay: 0.25s; }
.location-focus-node.node-langley { left: 41%; top: 45%; animation-delay: 0.5s; }
.location-focus-node.node-abbotsford { left: 57%; top: 56%; width: 14px; height: 14px; animation-delay: 0.75s; }
.location-focus-node.node-chilliwack { left: 74%; top: 68%; animation-delay: 1s; }
.location-focus-node.node-hope { left: 88%; top: 60%; animation-delay: 1.25s; }

.location-focus-runner {
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 242, 0.98), rgba(255, 122, 130, 0.96) 58%, rgba(255, 122, 130, 0) 78%);
  box-shadow: 0 0 22px rgba(255,105,116,0.55);
}

.location-focus-runner.runner-main {
  left: 13%;
  top: 50%;
  animation: aboutStageRunnerMain 7.2s linear infinite;
}

.location-focus-runner.runner-secondary {
  left: 24%;
  top: 64%;
  animation: aboutStageRunnerSecondary 8.5s linear infinite;
}

.location-focus-pulse {
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255,116,124,0.34);
  animation: aboutCoveragePulse 3.4s ease-out infinite;
}

.location-focus-pulse.pulse-vancouver {
  left: 8.8%;
  top: 44.8%;
  width: 28px;
  height: 28px;
}

.location-focus-pulse.pulse-city {
  left: var(--pulse-x, 54%);
  top: var(--pulse-y, 52%);
  width: 34px;
  height: 34px;
  animation-delay: 0.8s;
}

.location-focus-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  justify-content: flex-end;
}

.location-focus-tags span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 116, 124, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 240, 242, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  animation: locationTagPulse 3.2s ease-in-out infinite;
}

.location-focus-tags span:nth-child(2) {
  animation-delay: 0.4s;
}

.location-focus-tags span:nth-child(3) {
  animation-delay: 0.8s;
}

.location-focus-signature {
  right: 6%;
  bottom: 13%;
  width: 32%;
  min-width: 190px;
  height: 46%;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 89, 98, 0.2), transparent 42%),
    rgba(8, 8, 11, 0.32);
  backdrop-filter: blur(10px);
  z-index: 2;
  overflow: hidden;
}

.signature-title {
  position: absolute;
  left: 1rem;
  top: 0.85rem;
  z-index: 5;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 240, 242, 0.74);
}

.signature-core,
.signature-line,
.signature-node,
.signature-bar,
.signature-sweep {
  position: absolute;
}

.signature-core {
  left: 50%;
  top: 52%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle, rgba(255, 110, 118, 0.28), rgba(255, 110, 118, 0.05) 54%, transparent 72%);
  box-shadow: 0 0 34px rgba(255, 86, 96, 0.24);
  animation: locationSignatureCore 3.8s ease-in-out infinite;
}

.signature-line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 104, 112, 0), rgba(255, 104, 112, 0.84), rgba(255, 104, 112, 0));
  box-shadow: 0 0 18px rgba(255, 92, 102, 0.26);
  transform-origin: left center;
}

.signature-line-a { left: 16%; top: 46%; width: 72%; transform: rotate(-16deg); animation: locationSignalTrace 3.6s ease-in-out infinite; }
.signature-line-b { left: 18%; top: 65%; width: 62%; transform: rotate(10deg); animation: locationSignalTrace 4.1s ease-in-out 0.4s infinite; }
.signature-line-c { left: 30%; top: 30%; width: 50%; transform: rotate(18deg); animation: locationSignalTrace 4.8s ease-in-out 0.8s infinite; }

.signature-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3f4, #ff6b76 62%, rgba(255, 107, 118, 0) 76%);
  box-shadow: 0 0 24px rgba(255, 96, 108, 0.52);
  animation: locationNodePulse 2.5s ease-in-out infinite;
}

.signature-node-a { left: 18%; top: 43%; }
.signature-node-b { left: 70%; top: 25%; animation-delay: 0.45s; }
.signature-node-c { right: 14%; bottom: 21%; animation-delay: 0.9s; }

.signature-bar {
  bottom: 1.1rem;
  width: 16%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 105, 114, 0.96), rgba(150, 18, 22, 0.2));
  box-shadow: 0 0 22px rgba(255, 90, 100, 0.22);
  animation: locationBars 2.8s ease-in-out infinite;
}

.signature-bar-a { left: 18%; height: 18%; }
.signature-bar-b { left: 41%; height: 32%; animation-delay: 0.25s; }
.signature-bar-c { left: 64%; height: 48%; animation-delay: 0.5s; }

.signature-sweep {
  left: 50%;
  top: 50%;
  width: 2px;
  height: 42%;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(255, 110, 118, 0.8), rgba(255, 110, 118, 0));
  filter: blur(0.5px);
  animation: radar-spin 4.2s linear infinite;
}

.location-focus-abbotsford { --focus-x: 57%; --focus-y: 56%; --pulse-x: 54.6%; --pulse-y: 52.4%; }
.location-focus-chilliwack { --focus-x: 74%; --focus-y: 68%; --pulse-x: 71.8%; --pulse-y: 64.2%; }
.location-focus-langley { --focus-x: 41%; --focus-y: 45%; --pulse-x: 38.8%; --pulse-y: 41.2%; }
.location-focus-surrey { --focus-x: 26%; --focus-y: 38%; --pulse-x: 23.8%; --pulse-y: 34.4%; }
.location-focus-vancouver { --focus-x: 12%; --focus-y: 48%; --pulse-x: 8.8%; --pulse-y: 44.6%; }
.location-focus-hope { --focus-x: 88%; --focus-y: 60%; --pulse-x: 84.9%; --pulse-y: 56.2%; }
.location-focus-fraser-valley { --focus-x: 58%; --focus-y: 56%; --pulse-x: 54.6%; --pulse-y: 52.4%; }
.location-focus-remote-support-canada { --focus-x: 52%; --focus-y: 44%; --pulse-x: 47%; --pulse-y: 42%; }

.location-focus-mode-operations .location-focus-signature {
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 52% 48%, rgba(255, 92, 102, 0.24), transparent 46%),
    rgba(8, 8, 11, 0.34);
  background-size: 26px 26px, 26px 26px, auto, auto;
}

.location-focus-mode-operations .location-focus-map {
  background:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    radial-gradient(circle at var(--focus-x, 56%) var(--focus-y, 52%), rgba(255, 92, 102, 0.32), transparent 22%),
    linear-gradient(150deg, rgba(22, 16, 20, 0.92), rgba(8, 8, 11, 0.98));
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.location-focus-mode-continuity .signature-core {
  width: 104px;
  height: 104px;
  border: 10px solid rgba(255, 105, 114, 0.12);
  animation-duration: 2.9s;
}

.location-focus-mode-continuity .signature-bar {
  border-radius: 999px;
  height: 8px;
  width: 58%;
  left: 20%;
}

.location-focus-mode-continuity .signature-bar-a { bottom: 4.1rem; }
.location-focus-mode-continuity .signature-bar-b { bottom: 3rem; }
.location-focus-mode-continuity .signature-bar-c { bottom: 1.9rem; }
.location-focus-mode-continuity .location-focus-route.route-main { transform: rotate(16deg); }
.location-focus-mode-continuity .location-focus-route.route-secondary { top: 71%; transform: rotate(4deg); }

.location-focus-mode-growth .signature-bar-a { left: 22%; height: 22%; }
.location-focus-mode-growth .signature-bar-b { left: 42%; height: 44%; }
.location-focus-mode-growth .signature-bar-c { left: 62%; height: 64%; }
.location-focus-mode-growth .signature-line-a { transform: rotate(-8deg); }
.location-focus-mode-growth .signature-line-b { transform: rotate(-22deg); }
.location-focus-mode-growth .location-focus-route.route-main { transform: rotate(8deg); }
.location-focus-mode-growth .location-focus-route.route-secondary { width: 50%; transform: rotate(-5deg); }

.location-focus-mode-security .signature-core {
  border-radius: 30% 30% 48% 48%;
  width: 76px;
  height: 96px;
}

.location-focus-mode-security .signature-sweep {
  height: 55%;
  animation-duration: 2.9s;
}

.location-focus-mode-security .location-focus-signature {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 92, 102, 0.22), transparent 34%),
    conic-gradient(from 0deg, rgba(255, 92, 102, 0.24), transparent 22%, rgba(255,255,255,0.04) 34%, transparent 62%, rgba(255,92,102,0.18));
}

.location-focus-mode-metro .signature-bar {
  width: 12%;
  border-radius: 8px 8px 0 0;
}

.location-focus-mode-metro .signature-bar-a { left: 18%; height: 32%; }
.location-focus-mode-metro .signature-bar-b { left: 36%; height: 55%; }
.location-focus-mode-metro .signature-bar-c { left: 54%; height: 42%; }
.location-focus-mode-metro .signature-core { left: 74%; top: 42%; }
.location-focus-mode-metro .location-focus-route.route-main { top: 48%; transform: rotate(4deg); }
.location-focus-mode-metro .location-focus-route.route-secondary { top: 63%; transform: rotate(-2deg); }

.location-focus-mode-resilience .signature-line-a {
  top: 54%;
  width: 76%;
  transform: rotate(-26deg);
}

.location-focus-mode-resilience .signature-line-b {
  top: 54%;
  width: 76%;
  transform: rotate(26deg);
}

.location-focus-mode-resilience .signature-bar {
  display: none;
}

.location-focus-mode-resilience .location-focus-map {
  background:
    radial-gradient(circle at var(--focus-x, 88%) var(--focus-y, 60%), rgba(255, 92, 102, 0.34), transparent 20%),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 120, 128, 0.1) 43% 45%, transparent 46%),
    linear-gradient(150deg, rgba(22, 16, 20, 0.92), rgba(8, 8, 11, 0.98));
}

.location-focus-mode-corridor .location-focus-signature {
  width: 38%;
}

.location-focus-mode-corridor .location-focus-route.route-main {
  width: 82%;
  animation-duration: 2.7s;
}

.location-focus-mode-national .location-focus-signature {
  border-radius: 50%;
  width: 260px;
  min-width: 260px;
  height: 260px;
  right: 7%;
  bottom: 6%;
}

.location-focus-mode-national .signature-bar {
  display: none;
}

.location-focus-mode-national .signature-core {
  width: 118px;
  height: 118px;
}

.location-focus-mode-national .location-focus-node {
  animation-duration: 1.8s;
}

.visual-variant-location-unique {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.location-hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 1.35rem;
}

.location-hero-stage::before,
.location-hero-stage::after {
  content: "";
  position: absolute;
  inset: 1.35rem;
  border-radius: 2.15rem;
  pointer-events: none;
}

.location-hero-stage::before {
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    radial-gradient(circle at 66% 32%, rgba(255, 82, 93, 0.24), transparent 24%),
    radial-gradient(circle at 20% 68%, rgba(255, 82, 93, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(18, 14, 18, 0.98), rgba(5, 6, 9, 0.98));
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.location-hero-stage::after {
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 95, 105, 0.13), transparent);
  width: 34%;
  inset-inline: auto;
  right: 100%;
  animation: locationCanvasSweep 2.7s linear infinite;
}

.location-hero-chip {
  position: absolute;
  left: 2.45rem;
  top: 2.15rem;
  z-index: 8;
}

.location-hero-caption {
  position: absolute;
  left: 2.45rem;
  bottom: 2.25rem;
  z-index: 8;
  width: min(38%, 20rem);
  padding: 1.15rem 1.25rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 95, 105, 0.18), transparent 34%),
    rgba(9, 9, 12, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: locationCaptionFloat 4s ease-in-out infinite;
}

.location-hero-caption span,
.location-hero-caption small {
  display: block;
  color: rgba(255, 238, 240, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-hero-caption strong {
  display: block;
  margin: 0.38rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 0.98;
  color: #fff8f8;
}

.location-hero-tags {
  position: absolute;
  right: 2.45rem;
  bottom: 2.35rem;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.62rem;
  max-width: 48%;
}

.location-hero-tags span {
  padding: 0.56rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 112, 122, 0.25);
  background: rgba(13, 11, 14, 0.68);
  color: rgba(255, 239, 241, 0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  animation: locationTagPulse 2.4s ease-in-out infinite;
}

.location-hero-tags span:nth-child(2) { animation-delay: 0.25s; }
.location-hero-tags span:nth-child(3) { animation-delay: 0.5s; }

.location-hero-operations .location-hero-caption {
  width: min(31%, 16.5rem);
  padding: 1rem 1.05rem;
}

.location-hero-operations .location-hero-caption strong {
  font-size: clamp(1.25rem, 2.05vw, 1.9rem);
}

.location-hero-operations .location-hero-tags {
  right: 2.15rem;
  bottom: 2.15rem;
  max-width: 42%;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 0.62rem;
}

.location-hero-operations .location-hero-tags span {
  white-space: nowrap;
}

.location-ops-board,
.location-continuity-vault,
.location-growth-lanes,
.location-security-grid,
.location-metro-core,
.location-resilience-gateway,
.location-national-globe,
.location-corridor-map {
  position: absolute;
  inset: 1.35rem;
  z-index: 3;
  border-radius: 2.15rem;
  overflow: hidden;
}

/* Abbotsford: operations command board */
.location-ops-board {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 82, 93, 0.26), transparent 24%),
    radial-gradient(circle at 74% 20%, rgba(255, 82, 93, 0.12), transparent 23%),
    linear-gradient(115deg, rgba(255,255,255,0.025), transparent 50%);
}

.location-ops-board::before {
  content: "";
  position: absolute;
  inset: 8% 7%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 44%, transparent 0 8rem, #000 8.4rem);
  opacity: 0.82;
}

.ops-hq-core {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 6;
  width: 18rem;
  height: 18rem;
  transform: translate(-50%, -50%);
}

.ops-hq-ring,
.ops-hq-shield,
.ops-hq-beam {
  position: absolute;
}

.ops-hq-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 245, 246, 0.12);
  box-shadow: inset 0 0 34px rgba(255, 88, 98, 0.06), 0 0 46px rgba(255, 88, 98, 0.12);
  animation: opsHqRing 3.2s linear infinite;
}

.ops-hq-ring.ring-b {
  inset: 2.5rem;
  border-style: dashed;
  animation-duration: 2.2s;
  animation-direction: reverse;
}

.ops-hq-shield {
  left: 50%;
  top: 50%;
  width: 8rem;
  height: 9.4rem;
  transform: translate(-50%, -50%);
  border-radius: 2.2rem 2.2rem 3.5rem 3.5rem;
  clip-path: polygon(50% 0%, 88% 16%, 82% 72%, 50% 100%, 18% 72%, 12% 16%);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent 28%),
    linear-gradient(180deg, #ff4f5d, #8f1018 58%, #16080b);
  box-shadow:
    0 0 70px rgba(255, 74, 86, 0.35),
    inset 0 0 0 10px rgba(7, 9, 10, 0.42),
    inset 0 0 0 14px rgba(255,255,255,0.08);
  animation: opsShieldHover 2.4s ease-in-out infinite;
}

.ops-hq-shield span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff6f7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 0 18px rgba(0,0,0,0.45);
}

.ops-hq-beam {
  left: 50%;
  top: 50%;
  width: 3px;
  height: 11rem;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(255, 240, 242, 0.5), rgba(255, 84, 96, 0.24), transparent);
  filter: blur(0.2px);
  animation: opsHqBeam 1.6s linear infinite;
}

.ops-hq-beam.beam-b {
  animation-delay: 0.8s;
}

.ops-base-floor {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 20%;
  z-index: 3;
  height: 8rem;
  perspective: 420px;
}

.ops-base-floor span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 116, 0.58), transparent);
  transform: rotateX(64deg);
  animation: opsFloorRush 1.5s linear infinite;
}

.ops-base-floor span:nth-child(1) { top: 12%; }
.ops-base-floor span:nth-child(2) { top: 36%; animation-delay: 0.18s; }
.ops-base-floor span:nth-child(3) { top: 60%; animation-delay: 0.36s; }
.ops-base-floor span:nth-child(4) { top: 84%; animation-delay: 0.54s; }

.ops-ticket-stack {
  position: absolute;
  left: 9%;
  top: 21%;
  z-index: 5;
  width: 27%;
  display: grid;
  gap: 0.65rem;
}

.ops-ticket-stack span {
  height: 2.55rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(90deg, rgba(255,255,255,0.045), rgba(255, 88, 98, 0.12), rgba(255,255,255,0.02));
  animation: opsTicketSlide 1.35s ease-in-out infinite;
}

.ops-ticket-stack span:nth-child(2) { animation-delay: 0.18s; }
.ops-ticket-stack span:nth-child(3) { animation-delay: 0.36s; }
.ops-ticket-stack span:nth-child(4) { animation-delay: 0.54s; }

.ops-device-grid {
  position: absolute;
  right: 10%;
  top: 19%;
  z-index: 5;
  width: 27%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.ops-device-grid span {
  aspect-ratio: 1.25;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 70% 20%, rgba(255, 104, 114, 0.34), rgba(255,255,255,0.035) 48%, rgba(0,0,0,0.12));
  animation: opsDeviceBlink 0.95s ease-in-out infinite;
}

.ops-device-grid span:nth-child(2n) { animation-delay: 0.24s; }
.ops-device-grid span:nth-child(3n) { animation-delay: 0.48s; }

.ops-hq-modules {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 7;
  display: flex;
  justify-content: center;
  gap: 0.72rem;
}

.ops-hq-modules span {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 112, 122, 0.25);
  background: rgba(11, 10, 13, 0.72);
  color: rgba(255, 240, 242, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: locationTagPulse 1.4s ease-in-out infinite;
}

.ops-hq-modules span:nth-child(2) { animation-delay: 0.2s; }
.ops-hq-modules span:nth-child(3) { animation-delay: 0.4s; }

.ops-routing-line {
  position: absolute;
  height: 4px;
  z-index: 4;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 93, 103, 0.95), transparent);
  box-shadow: 0 0 24px rgba(255, 88, 98, 0.32);
  animation: opsRouteFlash 1.05s linear infinite;
}

.ops-routing-line.line-a { left: 16%; top: 48%; width: 68%; transform: rotate(6deg); }
.ops-routing-line.line-b { left: 15%; top: 62%; width: 66%; transform: rotate(-7deg); animation-delay: 0.2s; }
.ops-routing-line.line-c { left: 28%; top: 34%; width: 46%; transform: rotate(-20deg); animation-delay: 0.4s; }
.ops-routing-line.line-d { left: 28%; top: 72%; width: 48%; transform: rotate(18deg); animation-delay: 0.6s; }

.ops-pulse {
  position: absolute;
  z-index: 7;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2f3, #ff6570 58%, transparent 76%);
  box-shadow: 0 0 28px rgba(255, 88, 98, 0.5);
  animation: locationNodePulse 1.2s ease-in-out infinite;
}

.ops-pulse.pulse-a { left: 47%; top: 50%; }
.ops-pulse.pulse-b { left: 68%; top: 36%; animation-delay: 0.28s; }
.ops-pulse.pulse-c { left: 34%; top: 70%; animation-delay: 0.56s; }
.ops-pulse.pulse-d { left: 56%; top: 27%; animation-delay: 0.84s; }

.ops-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 93, 103, 0.1), transparent);
  width: 28%;
  transform: translateX(-130%);
  animation: locationMapScan 2.2s linear infinite;
}

/* Chilliwack: backup and continuity vault */
.location-continuity-vault {
  background: radial-gradient(circle at 58% 48%, rgba(255, 93, 103, 0.18), transparent 28%);
}

.vault-door {
  position: absolute;
  left: 49%;
  top: 44%;
  width: 15rem;
  height: 15rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 18px solid rgba(255, 100, 110, 0.12);
  background: radial-gradient(circle, rgba(10,10,13,0.92), rgba(255, 88, 98, 0.08));
  box-shadow: 0 0 70px rgba(255, 80, 90, 0.18), inset 0 0 42px rgba(255,255,255,0.04);
  animation: vaultDoorSpin 3.6s linear infinite;
}

.vault-ring {
  position: absolute;
  left: 49%;
  top: 44%;
  border-radius: 50%;
  border: 1px solid rgba(255, 245, 246, 0.14);
  transform: translate(-50%, -50%);
  animation: aboutCoveragePulse 2.5s ease-out infinite;
}

.vault-ring.ring-a { width: 15rem; height: 15rem; }
.vault-ring.ring-b { width: 22rem; height: 22rem; animation-delay: 0.8s; }

.vault-beam {
  position: absolute;
  left: 49%;
  top: 44%;
  width: 3px;
  height: 19rem;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(255, 107, 118, 0.78), transparent);
  animation: radar-spin 2s linear infinite;
}

.restore-timeline {
  position: absolute;
  left: 12%;
  bottom: 27%;
  width: 72%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.restore-timeline span,
.backup-cubes span {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 0 22px rgba(255,88,98,0.11);
}

.restore-timeline span {
  height: 0.7rem;
  border-radius: 999px;
  animation: restoreSegment 1.2s ease-in-out infinite;
}

.restore-timeline span:nth-child(2) { animation-delay: 0.2s; }
.restore-timeline span:nth-child(3) { animation-delay: 0.4s; }
.restore-timeline span:nth-child(4) { animation-delay: 0.6s; }

.backup-cubes {
  position: absolute;
  right: 10%;
  top: 20%;
  display: flex;
  gap: 0.85rem;
}

.backup-cubes span {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  transform: rotateX(58deg) rotateZ(45deg);
  animation: cubeFloat 2.4s ease-in-out infinite;
}

.backup-cubes span:nth-child(2) { animation-delay: 0.35s; }
.backup-cubes span:nth-child(3) { animation-delay: 0.7s; }

/* Langley: growth and onboarding lanes */
.location-growth-lanes {
  background: radial-gradient(circle at 58% 42%, rgba(255, 92, 102, 0.18), transparent 30%);
}

.growth-stream {
  position: absolute;
  left: 12%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 114, 0.92), transparent);
  animation: growthStream 1.7s linear infinite;
}

.growth-stream.stream-a { top: 31%; width: 76%; transform: rotate(-5deg); }
.growth-stream.stream-b { top: 48%; width: 68%; transform: rotate(7deg); animation-delay: 0.3s; }
.growth-stream.stream-c { top: 65%; width: 78%; transform: rotate(-2deg); animation-delay: 0.6s; }

.growth-card {
  position: absolute;
  min-width: 8rem;
  padding: 1.1rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,13,0.72);
  color: #fff4f5;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 24px 48px rgba(0,0,0,0.22);
  animation: growthCardFloat 2.6s ease-in-out infinite;
}

.growth-card.card-a { left: 12%; top: 22%; }
.growth-card.card-b { left: 39%; top: 39%; animation-delay: 0.35s; }
.growth-card.card-c { right: 12%; top: 56%; animation-delay: 0.7s; }

.growth-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6f6, #ff6470 58%, transparent 76%);
  animation: locationNodePulse 1.25s ease-in-out infinite;
}

.growth-node.node-a { left: 30%; top: 34%; }
.growth-node.node-b { left: 58%; top: 49%; animation-delay: 0.28s; }
.growth-node.node-c { left: 78%; top: 68%; animation-delay: 0.56s; }

/* Surrey: dense security grid */
.location-security-grid {
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at 52% 48%, rgba(255, 87, 98, 0.18), transparent 31%);
  background-size: 32px 32px, 32px 32px, auto;
}

.security-shield {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 12rem;
  height: 14rem;
  transform: translate(-50%, -50%);
  border-radius: 44% 44% 54% 54%;
  border: 2px solid rgba(255, 245, 246, 0.16);
  background: radial-gradient(circle at 50% 28%, rgba(255, 100, 110, 0.28), rgba(12,12,15,0.74) 58%);
  box-shadow: 0 0 70px rgba(255, 82, 93, 0.22);
  animation: shieldBreathe 2s ease-in-out infinite;
}

.security-radar {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 23rem;
  height: 23rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

.security-sweep {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 3px;
  height: 12rem;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(255, 100, 110, 0.78), transparent);
  animation: radar-spin 1.6s linear infinite;
}

.security-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 96, 106, 0.9), transparent);
  animation: locationSignalTrace 1.4s ease-in-out infinite;
}

.security-link.link-a { left: 18%; top: 32%; width: 64%; transform: rotate(12deg); }
.security-link.link-b { left: 18%; top: 58%; width: 58%; transform: rotate(-16deg); animation-delay: 0.25s; }
.security-link.link-c { left: 36%; top: 72%; width: 48%; transform: rotate(6deg); animation-delay: 0.5s; }

.security-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5f5, #ff6470 58%, transparent 76%);
  box-shadow: 0 0 28px rgba(255, 92, 102, 0.46);
  animation: locationNodePulse 1.15s ease-in-out infinite;
}

.security-node.node-a { left: 18%; top: 28%; }
.security-node.node-b { right: 18%; top: 35%; animation-delay: 0.22s; }
.security-node.node-c { left: 25%; top: 65%; animation-delay: 0.44s; }
.security-node.node-d { right: 22%; top: 72%; animation-delay: 0.66s; }

/* Vancouver: metro skyline and fast transit paths */
.location-metro-core {
  background: radial-gradient(circle at 62% 40%, rgba(255, 94, 104, 0.2), transparent 31%);
}

.metro-skyline {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 27%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
}

.metro-skyline span {
  width: 4.2rem;
  border-radius: 1.2rem 1.2rem 0 0;
  background: linear-gradient(180deg, rgba(255, 103, 113, 0.9), rgba(116, 15, 22, 0.2));
  box-shadow: 0 0 34px rgba(255, 88, 98, 0.2);
  animation: skylinePulse 1.7s ease-in-out infinite;
}

.metro-skyline span:nth-child(1) { height: 6rem; }
.metro-skyline span:nth-child(2) { height: 9rem; animation-delay: 0.15s; }
.metro-skyline span:nth-child(3) { height: 13rem; animation-delay: 0.3s; }
.metro-skyline span:nth-child(4) { height: 8rem; animation-delay: 0.45s; }
.metro-skyline span:nth-child(5) { height: 11rem; animation-delay: 0.6s; }

.metro-line {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 100, 110, 0.9), transparent);
  animation: metroLineRush 1.6s linear infinite;
}

.metro-line.line-a { left: 10%; top: 35%; width: 78%; transform: rotate(-10deg); }
.metro-line.line-b { left: 14%; top: 51%; width: 72%; transform: rotate(7deg); animation-delay: 0.25s; }
.metro-line.line-c { left: 24%; top: 68%; width: 58%; transform: rotate(-3deg); animation-delay: 0.5s; }

.metro-train,
.metro-node {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4f5, #ff6470 58%, transparent 76%);
  box-shadow: 0 0 30px rgba(255, 90, 100, 0.48);
}

.metro-train { width: 18px; height: 18px; }
.metro-train.train-a { left: 13%; top: 32%; animation: metroTrainA 2.2s linear infinite; }
.metro-train.train-b { left: 18%; top: 50%; animation: metroTrainB 2.6s linear 0.4s infinite; }
.metro-node { width: 14px; height: 14px; animation: locationNodePulse 1.2s ease-in-out infinite; }
.metro-node.node-a { left: 25%; top: 38%; }
.metro-node.node-b { right: 24%; top: 43%; animation-delay: 0.35s; }
.metro-node.node-c { left: 54%; top: 71%; animation-delay: 0.7s; }

/* Hope: resilience gateway */
.location-resilience-gateway {
  background: radial-gradient(circle at 75% 50%, rgba(255, 90, 100, 0.22), transparent 28%);
}

.bridge-deck {
  position: absolute;
  left: 13%;
  top: 56%;
  width: 74%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 100, 110, 0.15), rgba(255, 100, 110, 0.95), rgba(255, 100, 110, 0.15));
  box-shadow: 0 0 32px rgba(255, 88, 98, 0.28);
}

.bridge-cable {
  position: absolute;
  left: 18%;
  top: 30%;
  width: 64%;
  height: 16rem;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 180, 186, 0.18);
  animation: bridgeCableGlow 1.9s ease-in-out infinite;
}

.bridge-cable.cable-b {
  left: 23%;
  top: 37%;
  width: 54%;
  animation-delay: 0.45s;
}

.gateway-beacon {
  position: absolute;
  right: 18%;
  top: 43%;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3f4 0 12%, #ff6470 13% 36%, rgba(255, 100, 110, 0.1) 37% 68%, transparent 69%);
  box-shadow: 0 0 60px rgba(255, 88, 98, 0.34);
  animation: beaconPulse 1.45s ease-in-out infinite;
}

.recovery-path {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 100, 110, 0.9), transparent);
  animation: metroLineRush 1.6s linear infinite;
}

.recovery-path.path-a { left: 15%; top: 45%; width: 66%; transform: rotate(10deg); }
.recovery-path.path-b { left: 21%; top: 70%; width: 55%; transform: rotate(-12deg); animation-delay: 0.4s; }
.recovery-runner { position: absolute; left: 17%; top: 43%; width: 18px; height: 18px; border-radius: 50%; background: radial-gradient(circle, #fff4f5, #ff6470 58%, transparent 76%); animation: metroTrainB 2.1s linear infinite; }

/* Remote Canada: national signal globe */
.location-national-globe {
  background: radial-gradient(circle at 50% 45%, rgba(255, 92, 102, 0.24), transparent 34%);
}

.national-globe-shell {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 21rem;
  height: 21rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 90, 100, 0.16), rgba(7,7,10,0.94) 66%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 80px rgba(255, 88, 98, 0.2);
  animation: globeSteadySpin 3.8s linear infinite;
}

.national-globe-line,
.national-orbit,
.national-canada,
.national-signal {
  position: absolute;
  left: 50%;
  top: 45%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.national-globe-line {
  width: 21rem;
  height: 8rem;
  border: 1px solid rgba(255,255,255,0.09);
}

.national-globe-line.line-b { width: 8rem; height: 21rem; }
.national-globe-line.line-c { width: 18rem; height: 18rem; }
.national-canada {
  width: 6rem;
  height: 2.4rem;
  left: 44%;
  top: 36%;
  border-radius: 42% 58% 50% 46%;
  background: #ff5965;
  box-shadow: 0 0 28px rgba(255, 89, 101, 0.44);
  animation: canadaFlash 1.35s ease-in-out infinite;
}

.national-orbit {
  width: 29rem;
  height: 12rem;
  border: 1px solid rgba(255, 112, 122, 0.18);
  animation: nationalOrbit 3.1s linear infinite;
}

.national-orbit.orbit-b {
  width: 24rem;
  height: 8rem;
  animation-direction: reverse;
  animation-duration: 2.4s;
}

.national-signal {
  width: 17px;
  height: 17px;
  background: radial-gradient(circle, #fff4f5, #ff6470 58%, transparent 76%);
  box-shadow: 0 0 30px rgba(255, 90, 100, 0.5);
}

.national-signal.signal-a { left: 29%; top: 35%; animation: locationNodePulse 1.2s ease-in-out infinite; }
.national-signal.signal-b { left: 70%; top: 58%; animation: locationNodePulse 1.2s ease-in-out 0.45s infinite; }

/* Fraser Valley: corridor-only map */
.location-corridor-map {
  background: radial-gradient(circle at 58% 54%, rgba(255, 90, 100, 0.22), transparent 30%);
}

.corridor-route {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 95, 105, 0.18), rgba(255, 95, 105, 0.95), rgba(255, 95, 105, 0.18));
  box-shadow: 0 0 28px rgba(255, 90, 100, 0.3);
  animation: locationRouteGlow 1.5s ease-in-out infinite;
}

.corridor-route.route-a { left: 10%; top: 51%; width: 78%; transform: rotate(12deg); }
.corridor-route.route-b { left: 18%; top: 67%; width: 62%; transform: rotate(-2deg); animation-delay: 0.35s; }
.corridor-runner,
.corridor-node {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5f6, #ff6470 58%, transparent 76%);
  box-shadow: 0 0 30px rgba(255, 90, 100, 0.5);
}

.corridor-runner { width: 18px; height: 18px; }
.corridor-runner.runner-a { left: 11%; top: 47%; animation: locationRunnerMain 2.8s linear infinite; }
.corridor-runner.runner-b { left: 20%; top: 65%; animation: locationRunnerSecondary 3.3s linear 0.45s infinite; }
.corridor-node { width: 15px; height: 15px; animation: locationNodePulse 1.1s ease-in-out infinite; }
.corridor-node.node-vancouver { left: 12%; top: 47%; }
.corridor-node.node-surrey { left: 26%; top: 40%; }
.corridor-node.node-langley { left: 40%; top: 45%; }
.corridor-node.node-abbotsford { left: 57%; top: 56%; }
.corridor-node.node-chilliwack { left: 74%; top: 67%; }
.corridor-node.node-hope { left: 88%; top: 59%; }

.corridor-city {
  position: absolute;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 239, 241, 0.9);
}

.corridor-city.city-vancouver { left: 8%; top: 42%; }
.corridor-city.city-surrey { left: 23%; top: 35%; }
.corridor-city.city-langley { left: 37%; top: 40%; }
.corridor-city.city-abbotsford { left: 52%; top: 50%; }
.corridor-city.city-chilliwack { left: 67%; top: 71%; }
.corridor-city.city-hope { left: 82%; top: 53%; }

/* Premium animated map canvas for individual location pages. */
.location-focus-stage .location-map-canvas {
  position: absolute;
  inset: 1.35rem;
  min-height: auto;
  border-radius: 2.25rem;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--focus-x, 56%) var(--focus-y, 52%), rgba(255, 83, 94, 0.38), transparent 17%),
    radial-gradient(circle at 18% 42%, rgba(255, 100, 112, 0.2), transparent 26%),
    radial-gradient(circle at 84% 32%, rgba(255, 100, 112, 0.13), transparent 23%),
    linear-gradient(145deg, rgba(18, 15, 19, 0.97), rgba(5, 6, 9, 0.98));
}

.location-focus-stage .location-map-canvas::after {
  content: "";
  position: absolute;
  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),
    radial-gradient(circle at var(--focus-x, 56%) var(--focus-y, 52%), rgba(255, 120, 130, 0.18), transparent 28%);
  background-size: 46px 46px, 46px 46px, auto;
  opacity: 0.86;
  pointer-events: none;
}

.location-map-streets,
.location-map-scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.location-map-streets .street {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 200, 0.16), rgba(255, 88, 96, 0.22), transparent);
  box-shadow: 0 0 18px rgba(255, 88, 96, 0.12);
  animation: locationStreetFlow 2.8s ease-in-out infinite;
}

.location-map-streets .street-a { left: 5%; top: 27%; width: 76%; transform: rotate(2deg); }
.location-map-streets .street-b { left: 12%; top: 38%; width: 84%; transform: rotate(-8deg); animation-delay: 0.2s; }
.location-map-streets .street-c { left: 4%; top: 55%; width: 88%; transform: rotate(10deg); animation-delay: 0.4s; }
.location-map-streets .street-d { left: 18%; top: 70%; width: 66%; transform: rotate(-3deg); animation-delay: 0.6s; }
.location-map-streets .street-e { left: 15%; top: 18%; width: 2px; height: 58%; transform: rotate(12deg); animation-delay: 0.8s; }
.location-map-streets .street-f { left: 36%; top: 16%; width: 2px; height: 70%; transform: rotate(-9deg); animation-delay: 1s; }
.location-map-streets .street-g { left: 62%; top: 13%; width: 2px; height: 74%; transform: rotate(7deg); animation-delay: 1.2s; }
.location-map-streets .street-h { left: 82%; top: 22%; width: 2px; height: 58%; transform: rotate(-13deg); animation-delay: 1.4s; }

.location-map-scan {
  background: linear-gradient(90deg, transparent, rgba(255, 93, 103, 0.12), transparent);
  width: 32%;
  transform: translateX(-120%);
  animation: locationMapScan 2.9s linear infinite;
}

.location-focus-stage .location-focus-map-label {
  top: 1.25rem;
  left: 1.4rem;
  z-index: 8;
}

.location-map-callout {
  position: absolute;
  left: 1.45rem;
  top: 4.1rem;
  z-index: 8;
  width: min(32%, 17rem);
  padding: 1.05rem 1.1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 92, 102, 0.18), transparent 38%),
    rgba(10, 10, 13, 0.68);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  animation: locationCardFloat 4.5s ease-in-out infinite;
}

.location-map-callout span,
.location-map-callout small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 238, 240, 0.7);
}

.location-map-callout strong {
  display: block;
  margin: 0.38rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  color: #fff7f8;
}

.location-map-callout small {
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.location-focus-stage .location-focus-route {
  z-index: 4;
  height: 5px;
  animation: locationRouteGlow 1.8s ease-in-out infinite;
}

.location-focus-stage .location-focus-route.route-main {
  left: 9%;
  top: 55%;
  width: 81%;
  transform: rotate(8deg);
}

.location-focus-stage .location-focus-route.route-secondary {
  left: 17%;
  top: 66%;
  width: 61%;
  transform: rotate(-4deg);
}

.location-focus-route.route-tertiary {
  left: 28%;
  top: 42%;
  width: 56%;
  transform: rotate(17deg);
  opacity: 0.58;
}

.location-focus-stage .location-focus-runner {
  z-index: 6;
  width: 16px;
  height: 16px;
}

.location-focus-stage .runner-main {
  left: 10%;
  top: 52%;
  animation: locationRunnerMain 3.2s linear infinite;
}

.location-focus-stage .runner-secondary {
  left: 18%;
  top: 63%;
  animation: locationRunnerSecondary 3.8s linear infinite 0.5s;
}

.location-focus-stage .runner-tertiary {
  left: 30%;
  top: 39%;
  animation: locationRunnerTertiary 4.1s linear infinite 1.1s;
}

.location-focus-stage .location-focus-city,
.location-focus-stage .location-focus-node,
.location-focus-stage .location-focus-pulse {
  z-index: 7;
}

.location-focus-stage .location-focus-city {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.location-focus-stage .city-vancouver { left: 8%; top: 47%; transform: translate(-4px, -28px); }
.location-focus-stage .city-surrey { left: 24%; top: 38%; transform: translate(-8px, -28px); }
.location-focus-stage .city-langley { left: 39%; top: 43%; transform: translate(-8px, -28px); }
.location-focus-stage .city-abbotsford { left: 56%; top: 55%; transform: translate(-20px, -30px); }
.location-focus-stage .city-chilliwack { left: 73%; top: 65%; transform: translate(-22px, 18px); }
.location-focus-stage .city-hope { left: 87%; top: 57%; transform: translate(-20px, -30px); }

.location-focus-stage .node-vancouver { left: 10%; top: 51%; }
.location-focus-stage .node-surrey { left: 25%; top: 42%; }
.location-focus-stage .node-langley { left: 40%; top: 47%; }
.location-focus-stage .node-abbotsford { left: 57%; top: 59%; }
.location-focus-stage .node-chilliwack { left: 74%; top: 69%; }
.location-focus-stage .node-hope { left: 88%; top: 61%; }

.location-focus-stage .pulse-vancouver { left: 8%; top: 48.6%; }

.location-focus-stage .location-focus-signature {
  right: 7%;
  top: 16%;
  bottom: auto;
  width: min(32%, 19rem);
  min-width: 220px;
  height: 42%;
  z-index: 5;
  animation: locationCardFloat 4.8s ease-in-out 0.4s infinite;
}

.location-focus-stage .location-focus-tags {
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  z-index: 8;
  max-width: 52%;
  justify-content: flex-end;
}

.location-focus-stage .location-focus-tags span {
  background: rgba(21, 15, 18, 0.72);
  backdrop-filter: blur(10px);
}

.location-focus-mode-operations .location-focus-signature {
  right: 8%;
  top: 18%;
}

.location-focus-mode-continuity .location-focus-signature {
  right: 6%;
  top: 20%;
}

.location-focus-mode-growth .location-focus-signature {
  right: 8%;
  top: 16%;
}

.location-focus-mode-security .location-focus-signature {
  right: 8%;
  top: 17%;
}

.location-focus-mode-metro .location-focus-signature {
  right: 7%;
  top: 17%;
}

.location-focus-mode-resilience .location-focus-signature {
  right: 7%;
  top: 18%;
}

.location-focus-mode-corridor .location-focus-signature {
  right: 6%;
  top: 17%;
  width: min(36%, 21rem);
}

.location-focus-mode-national .location-focus-signature {
  right: 8%;
  top: 16%;
  width: 250px;
  min-width: 250px;
  height: 250px;
}

.about-stage {
  position: relative;
  height: 100%;
}

.about-stage-desktop,
.about-stage-mobile {
  position: relative;
  height: 100%;
}

.about-stage-desktop {
  display: block;
  min-height: 620px;
}

.about-stage-mobile {
  display: none;
}

.about-stage-chip {
  position: absolute;
  top: 1.15rem;
  left: 1.45rem;
  z-index: 6;
}

.about-stage-frame,
.about-stage-mobile-map {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 110, 118, 0.18), transparent 32%),
    radial-gradient(circle at 19% 18%, rgba(255, 110, 118, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(24, 16, 20, 0.96), rgba(9, 9, 12, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 44px rgba(0, 0, 0, 0.22);
}

.about-stage-frame {
  min-height: 620px;
  margin: 1.35rem;
}

.about-stage-frame::before,
.about-stage-mobile-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 119, 128, 0), rgba(255, 119, 128, 0.15), rgba(255, 119, 128, 0));
  transform: translateX(-120%);
  animation: aboutCoverageSweep 7.5s linear infinite;
}

.about-stage-route-copy {
  position: absolute;
  left: 1.6rem;
  top: 1.55rem;
  z-index: 5;
  display: grid;
  gap: 0.42rem;
  max-width: 43%;
}

.about-stage-route-copy span,
.about-stage-card span,
.about-stage-mobile-card span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 229, 231, 0.68);
}

.about-stage-route-copy strong,
.about-stage-card strong,
.about-stage-mobile-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: #f7f1f2;
}

.about-stage-route-copy strong {
  font-size: 1.16rem;
  line-height: 1.14;
}

.about-stage-route-copy small,
.about-stage-mobile-card small {
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(238, 229, 231, 0.78);
}

.about-stage-track {
  position: absolute;
  left: 12%;
  top: 49%;
  width: 74%;
  height: 4px;
  border-radius: 999px;
  transform: rotate(13deg);
  background: linear-gradient(90deg, rgba(255, 120, 128, 0.1), rgba(255, 120, 128, 0.95), rgba(255, 120, 128, 0.14));
  box-shadow: 0 0 24px rgba(255, 96, 110, 0.28);
  z-index: 2;
}

.about-stage-track-secondary {
  top: 61%;
  width: 54%;
  left: 20%;
  transform: rotate(8deg);
  opacity: 0.8;
}

.about-stage-city,
.about-stage-node,
.about-stage-pulse,
.about-stage-runner {
  position: absolute;
}

.about-stage-city {
  z-index: 4;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 237, 0.9);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.24);
  animation: aboutLabelPulse 4.2s ease-in-out infinite;
}

.about-stage-city.city-vancouver { left: 9%; top: 34%; }
.about-stage-city.city-surrey { left: 23%; top: 28%; }
.about-stage-city.city-langley { left: 36%; top: 35%; }
.about-stage-city.city-abbotsford { left: 52%; top: 47%; }
.about-stage-city.city-chilliwack { left: 69%; top: 58%; }
.about-stage-city.city-hope { right: 8%; top: 53%; }

.about-stage-node {
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6d78;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 18px rgba(255, 96, 110, 0.42);
}

.about-stage-node.node-vancouver { left: 13%; top: 43%; }
.about-stage-node.node-surrey { left: 27%; top: 38%; }
.about-stage-node.node-langley { left: 40%; top: 44%; }
.about-stage-node.node-abbotsford { left: 56%; top: 56%; width: 14px; height: 14px; }
.about-stage-node.node-chilliwack { left: 73%; top: 66%; }
.about-stage-node.node-hope { right: 11%; top: 62%; }

.about-stage-pulse {
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255, 116, 124, 0.34);
  animation: aboutCoveragePulse 3.9s ease-out infinite;
}

.about-stage-pulse.pulse-vancouver {
  left: 11.1%;
  top: 40.3%;
  width: 28px;
  height: 28px;
}

.about-stage-pulse.pulse-abbotsford {
  left: 54.1%;
  top: 52.7%;
  width: 34px;
  height: 34px;
  animation-delay: 0.9s;
}

.about-stage-pulse.pulse-hope {
  right: 8.8%;
  top: 58.3%;
  width: 30px;
  height: 30px;
  animation-delay: 1.7s;
}

.about-stage-runner {
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 242, 0.98), rgba(255, 122, 130, 0.96) 58%, rgba(255, 122, 130, 0) 78%);
  box-shadow: 0 0 22px rgba(255, 105, 116, 0.55);
}

.about-stage-runner.runner-main {
  left: 15%;
  top: 45%;
  animation: aboutStageRunnerMain 7.2s linear infinite;
}

.about-stage-runner.runner-secondary {
  left: 28%;
  top: 58%;
  animation: aboutStageRunnerSecondary 8.5s linear infinite;
}

.about-stage-card {
  position: absolute;
  z-index: 5;
  width: 34%;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(30, 19, 22, 0.92), rgba(16, 12, 17, 0.97));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 32px rgba(0, 0, 0, 0.22);
  animation: aboutMetricFloat 5.8s ease-in-out infinite;
}

.about-stage-card strong,
.about-stage-mobile-card strong {
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.36;
}

.about-stage-card.card-support {
  right: 1.45rem;
  top: 1.45rem;
}

.about-stage-card.card-coverage {
  left: 1.45rem;
  bottom: 1.35rem;
  width: 35%;
  animation-delay: 0.8s;
}

.about-stage-card.card-security {
  right: 1.45rem;
  bottom: 1.35rem;
  width: 39%;
  animation-delay: 1.5s;
}

.about-stage-mobile {
  padding: 1.2rem;
}

.about-stage-mobile-card {
  position: relative;
  z-index: 4;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(30, 19, 22, 0.92), rgba(16, 12, 17, 0.97));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 32px rgba(0, 0, 0, 0.22);
}

.about-stage-mobile > .about-stage-mobile-card:first-of-type {
  margin-top: 3rem;
}

.about-stage-mobile-map {
  position: relative;
  inset: auto;
  margin-top: 0.95rem;
  min-height: 235px;
}

.about-stage-mobile-map .about-stage-track {
  top: 49%;
  left: 10%;
  width: 79%;
}

.about-stage-mobile-map .about-stage-track-secondary {
  left: 18%;
  width: 56%;
  top: 62%;
}

.about-stage-mobile-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 0.95rem;
}

.visual-variant-about-map {
  position: relative;
  min-height: 100%;
}

.about-coverage-stage {
  position: relative;
  height: 100%;
  padding: 1.45rem;
}

.about-coverage-chip {
  position: absolute;
  top: 1.1rem;
  left: 1.45rem;
  z-index: 5;
}

.about-coverage-panel {
  position: absolute;
  inset: 1.4rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 110, 118, 0.18), transparent 32%),
    radial-gradient(circle at 19% 18%, rgba(255, 110, 118, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(24, 16, 20, 0.96), rgba(9, 9, 12, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 44px rgba(0, 0, 0, 0.22);
}

.about-coverage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 119, 128, 0), rgba(255, 119, 128, 0.18), rgba(255, 119, 128, 0));
  transform: translateX(-120%);
  animation: aboutCoverageSweep 7.5s linear infinite;
}

.about-coverage-copy {
  position: absolute;
  top: 1.5rem;
  left: 1.55rem;
  right: 1.55rem;
  z-index: 4;
  max-width: 66%;
  display: grid;
  gap: 0.38rem;
}

.about-coverage-copy span,
.about-coverage-metrics span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 229, 231, 0.68);
}

.about-coverage-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1.14;
  color: #f7f1f2;
}

.about-coverage-copy small {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(238, 229, 231, 0.78);
}

.about-coverage-map {
  position: absolute;
  inset: 8.6rem 1.25rem 7.8rem;
  z-index: 2;
}

.about-coverage-route,
.about-coverage-link {
  position: absolute;
  height: 3px;
  transform-origin: left center;
  border-radius: 999px;
}

.about-coverage-route {
  background: linear-gradient(90deg, rgba(255, 120, 128, 0.14), rgba(255, 120, 128, 0.92), rgba(255, 120, 128, 0.14));
  box-shadow: 0 0 18px rgba(255, 94, 105, 0.28);
}

.about-coverage-route.route-main {
  left: 8%;
  top: 31%;
  width: 76%;
  transform: rotate(16deg);
}

.about-coverage-route.route-secondary {
  left: 13%;
  top: 56%;
  width: 58%;
  transform: rotate(11deg);
  opacity: 0.84;
}

.about-coverage-link {
  width: 56px;
  background: rgba(255, 152, 159, 0.24);
}

.about-coverage-link.link-vancouver {
  left: 14%;
  top: 27%;
  transform: rotate(63deg);
}

.about-coverage-link.link-abbotsford {
  left: 49%;
  top: 43%;
  transform: rotate(74deg);
}

.about-coverage-link.link-hope {
  right: 14%;
  top: 47%;
  transform: rotate(73deg);
}

.about-coverage-city,
.about-coverage-node,
.about-coverage-pulse,
.about-coverage-runner {
  position: absolute;
}

.about-coverage-city {
  z-index: 4;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 237, 0.9);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.24);
  animation: aboutLabelPulse 4.2s ease-in-out infinite;
}

.about-coverage-city.city-vancouver { left: 0%; top: 14%; }
.about-coverage-city.city-surrey { left: 14%; top: 7%; }
.about-coverage-city.city-langley { left: 29%; top: 13%; }
.about-coverage-city.city-abbotsford { left: 48%; top: 34%; }
.about-coverage-city.city-chilliwack { left: 68%; top: 48%; }
.about-coverage-city.city-hope { right: 0%; top: 42%; }

.about-coverage-node {
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6d78;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 18px rgba(255, 96, 110, 0.42);
}

.about-coverage-node.node-vancouver { left: 9%; top: 26%; }
.about-coverage-node.node-surrey { left: 23%; top: 20%; }
.about-coverage-node.node-langley { left: 39%; top: 29%; }
.about-coverage-node.node-abbotsford { left: 54%; top: 47%; width: 14px; height: 14px; }
.about-coverage-node.node-chilliwack { left: 74%; top: 58%; }
.about-coverage-node.node-hope { right: 6%; top: 55%; }

.about-coverage-pulse {
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(255, 116, 124, 0.34);
  animation: aboutCoveragePulse 3.9s ease-out infinite;
}

.about-coverage-pulse.pulse-vancouver {
  left: 6.5%;
  top: 22%;
  width: 28px;
  height: 28px;
}

.about-coverage-pulse.pulse-abbotsford {
  left: 50.4%;
  top: 43.8%;
  width: 34px;
  height: 34px;
  animation-delay: 0.9s;
}

.about-coverage-pulse.pulse-hope {
  right: 3.6%;
  top: 51.5%;
  width: 30px;
  height: 30px;
  animation-delay: 1.7s;
}

.about-coverage-runner {
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 242, 0.98), rgba(255, 122, 130, 0.96) 58%, rgba(255, 122, 130, 0) 78%);
  box-shadow: 0 0 22px rgba(255, 105, 116, 0.55);
}

.about-coverage-runner.runner-a {
  left: 12%;
  top: 28%;
  animation: aboutCoverageRunnerMain 7.2s linear infinite;
}

.about-coverage-runner.runner-b {
  left: 18%;
  top: 55%;
  animation: aboutCoverageRunnerSecondary 8.4s linear infinite;
}

.about-coverage-metrics {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.2rem;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-coverage-metrics article {
  min-height: 100%;
  padding: 0.95rem 1rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(30, 19, 22, 0.9), rgba(16, 12, 17, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: aboutMetricFloat 5.8s ease-in-out infinite;
}

.about-coverage-metrics article:nth-child(2) {
  animation-delay: 0.8s;
}

.about-coverage-metrics article:nth-child(3) {
  animation-delay: 1.4s;
}

.about-coverage-metrics strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #f7f1f2;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-story-card {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)), rgba(10,10,12,0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-story-card h3 {
  margin: 0 0 0.8rem;
}

.about-story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes aboutCoverageSweep {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(520%);
  }
}

@keyframes aboutStageRunnerMain {
  0% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.72; }
  18% { transform: translate3d(56px, -16px, 0) scale(1); opacity: 1; }
  38% { transform: translate3d(126px, 10px, 0) scale(1.05); opacity: 1; }
  58% { transform: translate3d(204px, 42px, 0) scale(1.08); opacity: 1; }
  82% { transform: translate3d(292px, 78px, 0) scale(1); opacity: 0.92; }
  100% { transform: translate3d(352px, 98px, 0) scale(0.92); opacity: 0.78; }
}

@keyframes aboutStageRunnerSecondary {
  0% { transform: translate3d(0, 0, 0) scale(0.88); opacity: 0.72; }
  22% { transform: translate3d(48px, -10px, 0) scale(1); opacity: 1; }
  44% { transform: translate3d(108px, 6px, 0) scale(1.04); opacity: 1; }
  68% { transform: translate3d(170px, 22px, 0) scale(1.06); opacity: 0.96; }
  100% { transform: translate3d(236px, 38px, 0) scale(0.92); opacity: 0.76; }
}

@keyframes locationSequencePhaseA {
  0%, 28% { opacity: 1; transform: translateY(0) scale(1); }
  32%, 100% { opacity: 0; transform: translateY(10px) scale(0.985); }
}

@keyframes locationSequencePhaseB {
  0%, 30% { opacity: 0; transform: translateY(10px) scale(0.985); }
  35%, 61% { opacity: 1; transform: translateY(0) scale(1); }
  66%, 100% { opacity: 0; transform: translateY(10px) scale(0.985); }
}

@keyframes locationSequencePhaseC {
  0%, 63% { opacity: 0; transform: translateY(10px) scale(0.985); }
  68%, 96% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(10px) scale(0.985); }
}

@keyframes aboutCoverageRunnerMain {
  0% { transform: translate3d(0, 0, 0) scale(0.75); opacity: 0; }
  12% { opacity: 1; }
  52% { transform: translate3d(230px, 74px, 0) scale(1); opacity: 1; }
  82% { transform: translate3d(446px, 132px, 0) scale(0.88); opacity: 0.92; }
  100% { transform: translate3d(560px, 132px, 0) scale(0.72); opacity: 0; }
}

@keyframes aboutCoverageRunnerSecondary {
  0% { transform: translate3d(0, 0, 0) scale(0.72); opacity: 0; }
  16% { opacity: 1; }
  52% { transform: translate3d(190px, 38px, 0) scale(1); opacity: 1; }
  82% { transform: translate3d(354px, 76px, 0) scale(0.88); opacity: 0.9; }
  100% { transform: translate3d(428px, 84px, 0) scale(0.72); opacity: 0; }
}

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

@keyframes aboutLabelPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes aboutCoveragePulse {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(2.25);
    opacity: 0;
  }
}

@keyframes locationHeroBloom {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.94;
    transform: translate(-48%, -52%) scale(1.08);
  }
}

@keyframes locationHeroRing {
  0% {
    transform: rotate(0deg) scale(0.92);
    opacity: 0.38;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: rotate(360deg) scale(1.06);
    opacity: 0.38;
  }
}

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

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

@keyframes locationRouteGlow {
  0%,
  100% {
    filter: brightness(0.78);
    opacity: 0.74;
  }

  50% {
    filter: brightness(1.25);
    opacity: 1;
  }
}

@keyframes locationNodePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.74;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes locationTagPulse {
  0%,
  100% {
    border-color: rgba(255, 116, 124, 0.18);
    box-shadow: 0 0 0 rgba(255, 116, 124, 0);
  }

  50% {
    border-color: rgba(255, 116, 124, 0.46);
    box-shadow: 0 0 18px rgba(255, 88, 96, 0.16);
  }
}

@keyframes locationSignatureCore {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.72;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes locationSignalTrace {
  0%,
  100% {
    opacity: 0.36;
    filter: brightness(0.82);
  }

  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@keyframes locationBars {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.74;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes locationStreetFlow {
  0%,
  100% {
    opacity: 0.24;
    filter: brightness(0.8);
  }

  50% {
    opacity: 0.88;
    filter: brightness(1.35);
  }
}

@keyframes locationMapScan {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }

  12%,
  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(430%);
    opacity: 0;
  }
}

@keyframes locationRunnerMain {
  0% { transform: translate3d(0, 0, 0) scale(0.72); opacity: 0; }
  12% { opacity: 1; }
  36% { transform: translate3d(155px, 18px, 0) scale(1.08); opacity: 1; }
  68% { transform: translate3d(330px, 44px, 0) scale(1); opacity: 0.94; }
  100% { transform: translate3d(560px, 76px, 0) scale(0.74); opacity: 0; }
}

@keyframes locationRunnerSecondary {
  0% { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  14% { opacity: 1; }
  52% { transform: translate3d(240px, -14px, 0) scale(1.06); opacity: 1; }
  100% { transform: translate3d(470px, -36px, 0) scale(0.74); opacity: 0; }
}

@keyframes locationRunnerTertiary {
  0% { transform: translate3d(0, 0, 0) scale(0.68); opacity: 0; }
  16% { opacity: 1; }
  54% { transform: translate3d(210px, 72px, 0) scale(1.06); opacity: 1; }
  100% { transform: translate3d(410px, 138px, 0) scale(0.74); opacity: 0; }
}

@keyframes locationCanvasSweep {
  0% { right: 100%; opacity: 0; }
  12%, 70% { opacity: 1; }
  100% { right: -45%; opacity: 0; }
}

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

@keyframes opsTicketSlide {
  0%, 100% { transform: translateX(0); opacity: 0.68; }
  50% { transform: translateX(18px); opacity: 1; }
}

@keyframes opsDeviceBlink {
  0%, 100% { opacity: 0.58; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes opsRouteFlash {
  0%, 100% { opacity: 0.38; filter: brightness(0.85); }
  50% { opacity: 1; filter: brightness(1.38); }
}

@keyframes opsHqRing {
  0% { transform: rotate(0deg) scale(0.98); opacity: 0.52; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg) scale(1.02); opacity: 0.52; }
}

@keyframes opsShieldHover {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) scale(0.98); filter: brightness(0.98); }
  50% { transform: translate(-50%, -50%) translateY(-10px) scale(1.04); filter: brightness(1.18); }
}

@keyframes opsHqBeam {
  0% { transform: rotate(0deg); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0; }
}

@keyframes opsFloorRush {
  0% { transform: rotateX(64deg) translateY(-26px) scaleX(0.65); opacity: 0; }
  20% { opacity: 0.78; }
  100% { transform: rotateX(64deg) translateY(38px) scaleX(1.1); opacity: 0; }
}

@keyframes vaultDoorSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes restoreSegment {
  0%, 100% { transform: scaleX(0.45); opacity: 0.42; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes cubeFloat {
  0%, 100% { transform: rotateX(58deg) rotateZ(45deg) translateY(0); opacity: 0.7; }
  50% { transform: rotateX(58deg) rotateZ(45deg) translateY(-12px); opacity: 1; }
}

@keyframes growthStream {
  0% { background-position: -260px 0; opacity: 0.45; }
  50% { opacity: 1; }
  100% { background-position: 260px 0; opacity: 0.45; }
}

@keyframes growthCardFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.025); }
}

@keyframes shieldBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.96); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes skylinePulse {
  0%, 100% { transform: scaleY(0.86); opacity: 0.72; }
  50% { transform: scaleY(1.06); opacity: 1; }
}

@keyframes metroLineRush {
  0% { filter: brightness(0.75); opacity: 0.42; background-position: -220px 0; }
  50% { filter: brightness(1.35); opacity: 1; }
  100% { filter: brightness(0.75); opacity: 0.42; background-position: 220px 0; }
}

@keyframes metroTrainA {
  0% { transform: translate3d(0, 0, 0) scale(0.72); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate3d(480px, -78px, 0) scale(0.78); opacity: 0; }
}

@keyframes metroTrainB {
  0% { transform: translate3d(0, 0, 0) scale(0.72); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate3d(430px, 70px, 0) scale(0.78); opacity: 0; }
}

@keyframes bridgeCableGlow {
  0%, 100% { opacity: 0.32; filter: brightness(0.85); }
  50% { opacity: 1; filter: brightness(1.35); }
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(0.88); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes globeSteadySpin {
  0% { transform: translate(-50%, -50%) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes canadaFlash {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes nationalOrbit {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pagePulse {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pageBarGlow {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes corridorRunner {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    transform: translate3d(120px, 12px, 0);
    opacity: 1;
  }
  75% {
    transform: translate3d(220px, -10px, 0);
    opacity: 0.88;
  }
  100% {
    transform: translate3d(280px, 12px, 0);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .hero,
  .page-hero,
  .split-section,
  .feature-section,
  .cta-section,
  .trust-strip,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 1.4rem;
  }

  .page-hero-article {
    padding-top: 2.8rem;
  }

  .page-visual {
    min-height: 380px;
  }

  .page-visual-location-detail {
    min-height: 620px;
  }

  .blog-post-hero-visual {
    min-height: 380px;
  }

  .service-grid,
  .page-grid-3,
  .page-grid-2,
  .tools-grid,
  .testimonial-page-grid,
  .link-card-grid,
  .feature-list,
  .industry-grid,
  .foundation-grid,
  .promise-grid,
  .faq-grid,
  .cinematic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .location-focus-card-world,
  .location-focus-card-bc {
    width: calc(50% - 1.95rem);
  }

  .location-focus-card strong {
    font-size: 1.02rem;
  }

  .location-focus-card small {
    font-size: 0.84rem;
  }

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

  .blog-feature {
    grid-template-columns: 1fr;
  }

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

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

  .metric-row {
    grid-template-columns: 1fr;
  }

  .about-focus-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .about-focus-summary,
  .about-focus-map,
  .about-focus-metrics {
    grid-column: 1 / 2;
  }

  .about-focus-summary {
    grid-row: 1 / 2;
  }

  .about-focus-map {
    grid-row: 2 / 3;
  }

  .about-focus-metrics {
    grid-row: 3 / 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    padding-top: 0;
  }

  .location-sequence-panel strong {
    font-size: 1.08rem;
  }

  .location-sequence-panel small {
    max-width: 72%;
  }

  .about-coverage-copy {
    max-width: 62%;
  }

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

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: grid;
  }

  .site-footer {
    display: grid;
  }

  .dashboard-body,
  .dashboard-row-bottom,
  .dashboard-footer {
    grid-template-columns: 1fr;
  }

  .dashboard-column-main {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .dashboard-column-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .topbar {
    gap: 0.8rem;
    padding: 0.9rem 0.95rem;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .nav,
  .topbar > .topbar-cta {
    display: none;
  }

  .topbar.nav-open {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topbar.nav-open .nav {
    width: 100%;
    display: grid;
    gap: 0.9rem;
    padding: 1rem 0 0.2rem;
  }

  .topbar.nav-open > .topbar-cta {
    display: inline-flex;
    width: 100%;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-text,
  .page-hero-copy p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .page-hero-actions {
    gap: 0.85rem;
  }

  .hero-actions .button,
  .page-hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 820px;
  }

  .career-process {
    grid-template-columns: 1fr;
  }

  .hero-logo-badge {
    width: 78px;
    height: 78px;
  }

  .command-dashboard {
    inset: 1.6% 1.7% 1.8%;
    padding: 1.2rem;
  }

  .dashboard-header {
    align-items: start;
  }

  .dashboard-header-meta {
    justify-items: start;
  }

  .dashboard-body,
  .dashboard-column-side,
  .dashboard-row-bottom,
  .dashboard-footer {
    grid-template-columns: 1fr;
  }

  .dashboard-column-main,
  .dashboard-column-side {
    grid-template-rows: none;
  }

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

  .dashboard-panel-head strong {
    max-width: none;
  }

  .dashboard-line-chart {
    min-height: 180px;
  }

  .metric-bars {
    min-height: 126px;
  }

  .dashboard-footer-pills {
    min-height: 84px;
  }

  .stack-carousel {
    min-height: 300px;
  }

  .footer-pill {
    max-width: 100%;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    line-height: 1.02;
  }

  .page-visual {
    min-height: 340px;
  }

  .page-visual-location-detail {
    min-height: 0;
  }

  .visual-variant-location-focus {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .blog-post-hero-visual {
    min-height: 340px;
  }

  .service-grid,
  .page-grid-3,
  .page-grid-2,
  .tools-grid,
  .testimonial-page-grid,
  .link-card-grid,
  .feature-list,
  .industry-grid,
  .foundation-grid,
  .process-grid,
  .promise-grid,
  .faq-grid,
  .cinematic-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .location-link-grid {
    grid-template-columns: 1fr;
  }

  .location-focus-stage {
    position: relative;
    inset: auto;
    display: grid;
    gap: 0.85rem;
    min-height: 0;
    overflow: visible;
    padding: 1rem;
  }

  .location-focus-stage::before {
    width: 22rem;
    height: 22rem;
    left: 58%;
    top: 22%;
  }

  .location-focus-stage::after {
    width: 15rem;
    height: 15rem;
    right: -5rem;
    bottom: 8rem;
  }

  .location-focus-chip,
  .location-focus-card,
  .location-focus-map {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .location-focus-chip {
    justify-self: start;
    z-index: 6;
  }

  .location-focus-card {
    padding: 1rem;
  }

  .location-focus-card-world,
  .location-focus-card-bc {
    width: auto;
  }

  .location-focus-card-city {
    display: grid;
    align-items: start;
    justify-content: stretch;
    gap: 0.75rem;
  }

  .location-focus-tags {
    justify-content: flex-start;
  }

  .location-focus-map {
    min-height: 290px;
    border-radius: 1.7rem;
  }

  .location-focus-stage .location-map-canvas {
    position: relative;
    inset: auto;
    min-height: 520px;
    border-radius: 1.85rem;
  }

  .location-map-callout {
    left: 1rem;
    top: 3.6rem;
    width: min(46%, 15rem);
    padding: 0.9rem;
  }

  .location-focus-stage .location-focus-signature {
    right: 1rem;
    top: 6.8rem;
    width: min(42%, 16rem);
    min-width: 155px;
    height: 210px;
  }

  .location-focus-stage .location-focus-tags {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    justify-content: flex-start;
  }

  .location-focus-stage .location-focus-city {
    font-size: 0.58rem;
  }

  .location-focus-signature {
    right: 4%;
    bottom: 10%;
    width: 42%;
    min-width: 150px;
    height: 48%;
  }

  .location-focus-city {
    font-size: 0.56rem;
  }

  .location-focus-card strong {
    font-size: 1rem;
  }

  .location-focus-card small {
    max-width: none;
  }

  .about-focus-summary {
    margin-top: 2.85rem;
  }

  .about-focus-map {
    min-height: 245px;
  }

  .about-focus-metrics {
    grid-template-columns: 1fr;
  }

  .about-focus-city {
    font-size: 0.67rem;
  }

  .location-sequence-stage {
    padding: 1rem;
  }

  .location-sequence-panel {
    inset: 1rem;
    padding: 3.4rem 1rem 1rem;
  }

  .location-sequence-panel .service-globe-scene {
    inset: 6.6rem 1rem 1rem;
  }

  .location-sequence-map {
    inset: 7rem 1rem 1rem;
  }

  .location-sequence-panel strong {
    font-size: 1rem;
  }

  .location-sequence-panel small {
    max-width: none;
    font-size: 0.84rem;
  }

  .location-sequence-city {
    font-size: 0.63rem;
  }

  .location-sequence-target {
    width: 148px;
    height: 148px;
  }

  .about-coverage-panel {
    min-height: 520px;
  }

  .about-stage-route-copy {
    max-width: 46%;
  }

  .about-stage-desktop {
    display: none;
  }

  .about-stage-mobile {
    display: block;
    min-height: 560px;
    padding: 1rem;
  }

  .visual-variant-about-map,
  .about-stage {
    min-height: 560px;
  }

  .about-stage-mobile > .about-stage-mobile-card:first-of-type {
    margin-top: 2.95rem;
  }

  .about-stage-mobile-map {
    min-height: 240px;
    margin-top: 0.9rem;
  }

  .about-stage-mobile-grid {
    gap: 0.85rem;
    margin-top: 0.9rem;
  }

  .about-stage-card {
    width: 36%;
  }

  .about-stage-card.card-coverage {
    width: 38%;
  }

  .about-stage-card.card-security {
    width: 42%;
  }

  .about-coverage-copy {
    max-width: none;
    right: 1.35rem;
  }

  .about-coverage-map {
    inset: 9rem 1rem 11.2rem;
  }

  .about-coverage-metrics {
    grid-template-columns: 1fr;
    bottom: 1rem;
  }

  .about-coverage-city {
    font-size: 0.66rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(calc(100% - 0.8rem), var(--max-width));
  }

  .topbar {
    padding: 0.8rem 0.85rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .page-hero {
    gap: 1.15rem;
    padding-top: 1rem;
  }

  .page-hero-article {
    padding-top: 2.35rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.05rem, 12.5vw, 3.2rem);
  }

  .page-visual,
  .blog-post-hero-visual {
    min-height: 300px;
    border-radius: 24px;
  }

  .page-visual-location-detail {
    min-height: 0;
  }

  .visual-variant-location-focus {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .location-focus-stage {
    position: relative;
    inset: auto;
    padding: 0.85rem;
    gap: 0.75rem;
    overflow: visible;
  }

  .location-focus-card {
    border-radius: 1.45rem;
    padding: 0.9rem;
  }

  .location-focus-map {
    min-height: 250px;
    border-radius: 1.45rem;
  }

  .location-focus-stage .location-map-canvas {
    min-height: 470px;
    border-radius: 1.55rem;
  }

  .location-map-callout {
    left: 0.85rem;
    top: 3.35rem;
    width: calc(100% - 1.7rem);
    padding: 0.82rem;
  }

  .location-focus-stage .location-focus-signature {
    right: 0.85rem;
    top: 12.5rem;
    width: calc(100% - 1.7rem);
    min-width: 0;
    height: 170px;
  }

  .location-focus-stage .location-focus-tags {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .location-focus-map-label {
    left: 0.9rem;
    top: 0.85rem;
    max-width: 22ch;
    font-size: 0.62rem;
  }

  .location-focus-city {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .location-focus-route {
    height: 3px;
  }

  .location-focus-node {
    width: 9px;
    height: 9px;
  }

  .location-focus-node.node-abbotsford {
    width: 11px;
    height: 11px;
  }

  .location-focus-runner {
    width: 10px;
    height: 10px;
  }

  .location-focus-signature {
    min-width: 126px;
    height: 45%;
    opacity: 0.88;
  }

  .signature-title {
    left: 0.7rem;
    top: 0.65rem;
    max-width: 14ch;
    font-size: 0.52rem;
  }

  .signature-core {
    width: 54px;
    height: 54px;
  }

  .signature-node {
    width: 10px;
    height: 10px;
  }

  .signature-bar {
    bottom: 0.7rem;
  }

  .location-focus-tags span {
    padding: 0.42rem 0.65rem;
    font-size: 0.72rem;
  }

  .about-coverage-chip {
    left: 1rem;
    top: 0.95rem;
  }

  .about-stage-desktop {
    display: none;
  }

  .about-stage-mobile {
    display: block;
  }

  .about-stage-chip {
    left: 1rem;
    top: 0.95rem;
  }

  .about-stage-mobile {
    padding: 1rem;
  }

  .about-stage-mobile > .about-stage-mobile-card:first-of-type {
    margin-top: 2.85rem;
  }

  .about-stage-mobile-card {
    padding: 0.95rem;
  }

  .about-stage-mobile-map {
    min-height: 220px;
    margin-top: 0.85rem;
  }

  .about-stage-mobile-map .about-stage-city {
    font-size: 0.63rem;
  }

  .about-stage-mobile-grid {
    gap: 0.8rem;
  }

  .about-coverage-panel {
    min-height: 500px;
  }

  .about-coverage-copy {
    top: 1.2rem;
    left: 1rem;
    right: 1rem;
  }

  .about-coverage-copy strong {
    font-size: 1.02rem;
  }

  .about-coverage-copy small {
    font-size: 0.84rem;
  }

  .about-coverage-map {
    inset: 9.8rem 0.8rem 12rem;
  }

  .about-coverage-city.city-vancouver { left: 0%; top: 18%; }
  .about-coverage-city.city-surrey { left: 11%; top: 10%; }
  .about-coverage-city.city-langley { left: 25%; top: 15%; }
  .about-coverage-city.city-abbotsford { left: 44%; top: 36%; }
  .about-coverage-city.city-chilliwack { left: 65%; top: 49%; }
  .about-coverage-city.city-hope { right: 0%; top: 43%; }

  .about-coverage-route.route-main {
    width: 80%;
  }

  .about-coverage-route.route-secondary {
    width: 60%;
  }

  .button {
    min-height: 48px;
    padding: 0.85rem 1.1rem;
  }

  .site-footer {
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 0;
    height: auto;
    padding: 0.95rem;
  }

  .command-dashboard {
    display: none;
  }

  .hero-logo-badge {
    display: none;
  }

  .mobile-dashboard-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
  }

  .mobile-dashboard-viewport {
    position: relative;
    overflow: hidden;
    min-height: 428px;
    height: 428px;
  }

  .mobile-dashboard-track {
    position: relative;
    height: 100%;
  }

  .mobile-dashboard-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition:
      opacity 420ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-dashboard-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-dashboard-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
      linear-gradient(180deg, rgba(11, 11, 14, 0.96), rgba(19, 13, 17, 0.92));
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.015),
      0 22px 42px rgba(0, 0, 0, 0.24);
  }

  .mobile-dashboard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 26%),
      radial-gradient(circle at 85% 18%, rgba(255, 88, 95, 0.1), transparent 28%);
    pointer-events: none;
  }

  .mobile-dashboard-card > * {
    position: relative;
    z-index: 1;
  }

  .mobile-dashboard-card-summary {
    padding: 1.1rem 1.15rem 1.2rem;
  }

  .mobile-dashboard-card-visibility {
    padding-top: 1.05rem;
  }

  .mobile-dashboard-card-visibility > strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 1.02rem;
    line-height: 1.4;
  }

  .mobile-dashboard-card-summary-compact {
    padding-bottom: 1.05rem;
  }

  .mobile-dashboard-label {
    display: inline-flex;
    margin-bottom: 0.72rem;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 240, 241, 0.72);
  }

  .mobile-dashboard-card-summary strong,
  .mobile-dashboard-card .dashboard-panel-head strong {
    display: block;
    font-size: 1rem;
    line-height: 1.28;
  }

  .mobile-dashboard-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.72rem;
  }

  .mobile-dashboard-meta .mobile-dashboard-label {
    margin-bottom: 0;
  }

  .mobile-dashboard-meta-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.16rem;
    text-align: right;
  }

  .mobile-dashboard-region,
  .mobile-dashboard-time {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 240, 241, 0.72);
  }

  .mobile-dashboard-time {
    color: rgba(255, 240, 241, 0.9);
  }

  .mobile-dashboard-card-summary p {
    margin: 0.72rem 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .mobile-dashboard-status-line {
    display: grid;
    gap: 0.28rem;
    margin-top: 0.95rem;
  }

  .mobile-dashboard-status-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 240, 241, 0.68);
  }

  .mobile-dashboard-status-line strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.32;
  }

  .mobile-dashboard-pill-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .mobile-dashboard-pill-stack span {
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255, 240, 241, 0.84);
  }

  .mobile-dashboard-card-visibility .mobile-dashboard-pill-stack {
    margin-top: 0.85rem;
  }

  .mobile-dashboard-card .dashboard-panel-head {
    padding: 0;
  }

  .mobile-dashboard-card .dashboard-panel-head.compact span,
  .mobile-dashboard-card .dashboard-footer-label {
    display: block;
    margin-bottom: 0.42rem;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 240, 241, 0.72);
  }

  .mobile-dashboard-card .dashboard-panel-head strong,
  .mobile-dashboard-card .dashboard-footer-label + div {
    margin-top: 0;
  }

  .mobile-dashboard-card .network-map,
  .mobile-dashboard-card .metrics-chart-zone,
  .mobile-dashboard-card .dashboard-footer-service,
  .mobile-dashboard-card .dashboard-footer-rhythm {
    margin-top: 0.95rem;
  }

  .mobile-dashboard-slide .mobile-dashboard-card {
    height: 100%;
    min-height: 100%;
  }

  .mobile-dashboard-card .metric-bars {
    margin-top: 0.8rem;
  }

  .mobile-dashboard-card .radar-display {
    width: min(100%, 200px);
    margin: auto auto 0.25rem;
  }

  .mobile-dashboard-card .dashboard-footer-service,
  .mobile-dashboard-card .dashboard-footer-rhythm {
    min-height: 0;
    border-radius: 20px;
  }

  .mobile-dashboard-card .dashboard-footer-service {
    flex: 1;
    min-height: 250px;
  }

  .mobile-dashboard-card .service-globe-scene {
    min-height: 210px;
  }

  .mobile-dashboard-card .service-globe-svg {
    width: min(100%, 230px);
    height: auto;
  }

  .mobile-dashboard-card .dashboard-footer-rhythm {
    flex: 1;
    min-height: 250px;
  }

  .mobile-dashboard-card .rhythm-path {
    height: 176px;
  }

  .mobile-dashboard-card .metrics-chart-zone {
    min-height: 168px;
  }

  .mobile-dashboard-card .network-map {
    flex: 1;
    min-height: 238px;
  }

  .mobile-dashboard-card .metrics-chart-zone,
  .mobile-dashboard-card .dashboard-footer-service,
  .mobile-dashboard-card .dashboard-footer-rhythm {
    flex: 1;
  }

  .mobile-dashboard-card .metrics-chart-zone {
    min-height: 188px;
  }

  .mobile-dashboard-slide .mobile-dashboard-card {
    min-height: 0;
  }

  .mobile-dashboard-card .dashboard-panel-head.compact strong {
    max-width: 86%;
  }

  .mobile-dashboard-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
  }

  .mobile-dashboard-dots span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    transition:
      width 220ms ease,
      background-color 220ms ease,
      box-shadow 220ms ease;
  }

  .mobile-dashboard-dots span.is-active {
    width: 1.2rem;
    background: rgba(255, 88, 95, 0.92);
    box-shadow: 0 0 16px rgba(255, 88, 95, 0.35);
  }
}

@media (max-width: 780px) {
  .page-visual-location-detail {
    min-height: 600px;
  }

  .visual-variant-location-unique,
  .location-hero-stage {
    position: absolute;
    inset: 0;
  }

  .location-hero-stage {
    padding: 0.9rem;
  }

  .location-hero-stage::before,
  .location-hero-stage::after,
  .location-ops-board,
  .location-continuity-vault,
  .location-growth-lanes,
  .location-security-grid,
  .location-metro-core,
  .location-resilience-gateway,
  .location-national-globe,
  .location-corridor-map {
    inset: 0.9rem;
    border-radius: 1.65rem;
  }

  .location-hero-chip {
    left: 1.55rem;
    top: 1.45rem;
    max-width: calc(100% - 3.1rem);
  }

  .location-hero-caption {
    left: 1.45rem;
    right: 1.45rem;
    bottom: 5.8rem;
    width: auto;
    padding: 0.95rem 1rem;
  }

  .location-hero-caption strong {
    font-size: 1.45rem;
  }

  .location-hero-tags {
    left: 1.45rem;
    right: 1.45rem;
    bottom: 1.55rem;
    max-width: none;
    justify-content: flex-start;
  }

  .location-hero-operations .location-hero-caption {
    width: auto;
  }

  .location-hero-operations .location-hero-tags {
    left: 1.45rem;
    right: 1.45rem;
    bottom: 1.55rem;
    max-width: none;
    display: flex;
    justify-content: flex-start;
  }

  .location-hero-tags span {
    padding: 0.48rem 0.68rem;
    font-size: 0.78rem;
  }

  .ops-ticket-stack,
  .ops-device-grid,
  .location-map-callout {
    display: none;
  }

  .ops-hq-core {
    width: 14rem;
    height: 14rem;
    top: 39%;
  }

  .ops-hq-shield {
    width: 6.3rem;
    height: 7.5rem;
  }

  .ops-hq-modules {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 10.5rem;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .ops-hq-modules span {
    padding: 0.42rem 0.62rem;
    font-size: 0.64rem;
  }

  .ops-base-floor {
    left: 10%;
    right: 10%;
    bottom: 32%;
  }

  .vault-door {
    width: 12rem;
    height: 12rem;
  }

  .vault-ring.ring-a {
    width: 12rem;
    height: 12rem;
  }

  .vault-ring.ring-b {
    width: 17rem;
    height: 17rem;
  }

  .backup-cubes {
    right: 8%;
    top: 18%;
  }

  .backup-cubes span {
    width: 3rem;
    height: 3rem;
  }

  .growth-card {
    min-width: 6.4rem;
    padding: 0.85rem;
    font-size: 0.78rem;
  }

  .metro-skyline {
    left: 8%;
    right: 8%;
    gap: 0.55rem;
  }

  .metro-skyline span {
    width: 2.75rem;
  }

  .security-shield {
    width: 9rem;
    height: 11rem;
  }

  .security-radar {
    width: 16rem;
    height: 16rem;
  }

  .national-globe-shell,
  .national-globe-line.line-c {
    width: 16rem;
    height: 16rem;
  }

  .national-globe-line {
    width: 16rem;
    height: 6rem;
  }

  .national-globe-line.line-b {
    width: 6rem;
    height: 16rem;
  }

  .national-orbit {
    width: 20rem;
    height: 8rem;
  }

  .corridor-city {
    font-size: 0.56rem;
  }
}

@media (max-width: 560px) {
  .page-visual-location-detail {
    min-height: 560px;
  }

  .location-hero-caption {
    bottom: 5.6rem;
  }

  .location-hero-caption strong {
    font-size: 1.25rem;
  }

  .location-hero-tags {
    gap: 0.42rem;
  }

  .location-hero-tags span {
    font-size: 0.7rem;
  }

  .location-hero-chip {
    font-size: 0.7rem;
  }

  .restore-timeline {
    bottom: 36%;
  }

  .growth-card.card-a { left: 9%; top: 22%; }
  .growth-card.card-b { left: 36%; top: 38%; }
  .growth-card.card-c { right: 7%; top: 53%; }

  .metro-line.line-a,
  .metro-line.line-b,
  .metro-line.line-c,
  .corridor-route.route-a,
  .corridor-route.route-b {
    height: 3px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button-solid::after {
    animation: shine 3.8s ease-in-out infinite;
  }

  .hero-logo-badge {
    animation: float-badge 5.5s ease-in-out infinite;
  }

  .dashboard-live-dot {
    animation: live-pulse 2.4s ease-in-out infinite;
  }

  .dashboard-ambient-one {
    animation: ambient-drift-one 10s ease-in-out infinite;
  }

  .dashboard-ambient-two {
    animation: ambient-drift-two 12s ease-in-out infinite;
  }

  .dashboard-panel::before,
  .dashboard-footer-panel::before,
  .status-chip::after,
  .stack-card::after {
    animation: panel-sheen 8.2s ease-in-out infinite;
  }

  .dashboard-line-chart-primary {
    stroke-dasharray: 920;
    stroke-dashoffset: 920;
    animation: trace-draw 6.1s ease-in-out infinite;
  }

  .dashboard-line-chart-secondary {
    stroke-dasharray: 840;
    stroke-dashoffset: 840;
    animation: trace-draw 6.9s ease-in-out 0.4s infinite;
  }

  .line-chart-scan {
    animation: display-scan 4.8s linear infinite;
  }

  .line-chart-point-a {
    animation: line-point-a 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .line-chart-point-b {
    animation: line-point-b 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .metrics-chart-primary {
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    animation: trace-draw 5.2s ease-in-out infinite;
  }

  .metrics-chart-secondary {
    stroke-dasharray: 560;
    stroke-dashoffset: 560;
    animation: trace-draw 6s ease-in-out 0.35s infinite;
  }

  .metrics-chart-scan {
    animation: display-scan 4.4s linear infinite;
  }

  .metrics-chart-point-a {
    animation: metrics-point-a 4.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .metrics-chart-point-b {
    animation: metrics-point-b 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .status-chip-dot,
  .network-node,
  .radar-blip {
    animation: chart-ping 2.8s ease-out infinite;
  }

  .network-node-b,
  .radar-blip-b {
    animation-delay: 0.8s;
  }

  .network-node-c,
  .radar-blip-c {
    animation-delay: 1.6s;
  }

  .radar-sweep-beam {
    animation: radar-spin 4.6s linear infinite;
  }

  .metric-bars span:nth-child(1) { animation: bar-pulse 2.8s ease-in-out infinite; }
  .metric-bars span:nth-child(2) { animation: bar-pulse 2.8s ease-in-out 0.18s infinite; }
  .metric-bars span:nth-child(3) { animation: bar-pulse 2.8s ease-in-out 0.36s infinite; }
  .metric-bars span:nth-child(4) { animation: bar-pulse 2.8s ease-in-out 0.54s infinite; }
  .metric-bars span:nth-child(5) { animation: bar-pulse 2.8s ease-in-out 0.72s infinite; }

  .status-chip-priority {
    animation: priority-card-breathe 4.8s ease-in-out infinite;
  }

  .status-chip-priority:nth-child(2) {
    animation-delay: 0.6s;
  }

  .status-chip-priority:nth-child(4) {
    animation-delay: 1.2s;
  }

  .stack-card-active {
    animation: priority-card-breathe 4.4s ease-in-out infinite;
  }

  .stack-panel-glow {
    animation: ambient-drift-two 6.8s ease-in-out infinite;
  }

  .network-pulse.pulse-a {
    animation: pulse-run-a 3.8s linear infinite;
  }

  .network-pulse.pulse-b {
    animation: pulse-run-b 3.8s linear infinite 1s;
  }

  .network-pulse.pulse-c {
    animation: pulse-run-c 3.8s linear infinite 2s;
  }

  .dashboard-footer-track span::after {
    animation: track-flow 4.6s ease-in-out infinite;
  }

  .dashboard-footer-track span:nth-child(2)::after {
    animation-delay: 0.4s;
  }

  .dashboard-footer-track span:nth-child(3)::after {
    animation-delay: 0.8s;
  }

  .dashboard-footer-track span:nth-child(4)::after {
    animation-delay: 1.2s;
  }

  .footer-pill-active {
    animation: priority-card-breathe 4.8s ease-in-out infinite;
  }

  .dashboard-footer-status-glow {
    animation: ambient-drift-one 7.2s ease-in-out infinite;
  }

  .dashboard-scanline {
    animation: vertical-scan 5.4s linear infinite;
  }

  .dashboard-particles span:nth-child(1) { animation: particle-drift 6.8s ease-in-out infinite; }
  .dashboard-particles span:nth-child(2) { animation: particle-drift 7.6s ease-in-out 0.6s infinite; }
  .dashboard-particles span:nth-child(3) { animation: particle-drift 8.1s ease-in-out 1.1s infinite; }
  .dashboard-particles span:nth-child(4) { animation: particle-drift 7.2s ease-in-out 0.9s infinite; }
  .dashboard-particles span:nth-child(5) { animation: particle-drift 8.6s ease-in-out 1.5s infinite; }
  .dashboard-particles span:nth-child(6) { animation: particle-drift 7.9s ease-in-out 1.9s infinite; }

  .flow-node-a {
    animation: chart-ping 3s ease-out infinite;
  }

  .flow-node-b {
    animation: chart-ping 3s ease-out 0.7s infinite;
  }

  .flow-node-c {
    animation: chart-ping 3s ease-out 1.4s infinite;
  }

  .flow-runner-a {
    animation: flow-run-a 4.2s linear infinite;
  }

  .flow-runner-b {
    animation: flow-run-b 4.2s linear infinite 1.6s;
  }

  .video-stage-copy {
    animation: fade-up 1s ease-out both;
  }

  .video-stage-scan {
    animation: display-scan 4.6s linear infinite;
  }

  .video-trace-main path {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: trace-draw 5.6s ease-in-out infinite;
  }

  .video-trace-secondary path {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: trace-draw 6.4s ease-in-out 0.6s infinite;
  }

  .stage-bars span:nth-child(1) { animation: bar-pulse 2.4s ease-in-out infinite; }
  .stage-bars span:nth-child(2) { animation: bar-pulse 2.4s ease-in-out 0.15s infinite; }
  .stage-bars span:nth-child(3) { animation: bar-pulse 2.4s ease-in-out 0.3s infinite; }
  .stage-bars span:nth-child(4) { animation: bar-pulse 2.4s ease-in-out 0.45s infinite; }
  .stage-bars span:nth-child(5) { animation: bar-pulse 2.4s ease-in-out 0.6s infinite; }

  .radar-sweep {
    animation: radar-spin 5.2s linear infinite;
  }

  .flag-wave {
    animation: flag-wave 3.8s ease-in-out infinite;
  }

  .video-node.node-one {
    animation: chart-ping 2.8s ease-out infinite;
  }

  .video-node.node-two {
    animation: chart-ping 2.8s ease-out 0.8s infinite;
  }

  .video-node.node-three {
    animation: chart-ping 2.8s ease-out 1.6s infinite;
  }

  .screen-bars span:nth-child(1) { animation: bar-pulse 2.6s ease-in-out infinite; }
  .screen-bars span:nth-child(2) { animation: bar-pulse 2.6s ease-in-out 0.2s infinite; }
  .screen-bars span:nth-child(3) { animation: bar-pulse 2.6s ease-in-out 0.4s infinite; }
  .screen-bars span:nth-child(4) { animation: bar-pulse 2.6s ease-in-out 0.6s infinite; }
  .screen-bars span:nth-child(5) { animation: bar-pulse 2.6s ease-in-out 0.8s infinite; }
  .screen-bars span:nth-child(6) { animation: bar-pulse 2.6s ease-in-out 1s infinite; }

  .screen-wave {
    animation: wave-shift 5.6s linear infinite;
  }

  .screen-flag-wave {
    animation: flag-wave 3.8s ease-in-out infinite;
  }

  .display-beam {
    animation: display-scan 5.2s linear infinite;
  }

  .orbit-one {
    animation: slow-spin 12s linear infinite;
  }

  .orbit-two {
    animation: slow-spin 9s linear infinite reverse;
  }

  .chart-pulse-a {
    animation: chart-ping 2.8s ease-out infinite;
  }

  .chart-pulse-b {
    animation: chart-ping 2.8s ease-out 1.1s infinite;
  }

  .chart-runner-a {
    animation: runner-a 4.6s linear infinite;
  }

  .chart-runner-b {
    animation: runner-b 4.6s linear infinite 1.2s;
  }

  .chart-runner-c {
    animation: runner-c 4.6s linear infinite 2.4s;
  }

  .visual-orb {
    animation: float-orb var(--page-orb-float-speed) ease-in-out infinite, orb-breathe var(--page-orb-breathe-speed) ease-in-out infinite;
  }

  .visual-panel-main {
    animation: float-card var(--page-panel-float-speed) ease-in-out infinite, panel-breathe var(--page-panel-breathe-speed) ease-in-out infinite;
  }

  .visual-panel-side {
    animation: float-card var(--page-panel-float-speed) ease-in-out infinite reverse, panel-breathe calc(var(--page-panel-breathe-speed) - 0.6s) ease-in-out infinite reverse;
  }

  .panel-rings {
    animation: radar-spin var(--page-ring-speed) linear infinite;
  }

  .panel-rings::before {
    animation: radar-spin calc(var(--page-ring-speed) - 1.4s) linear infinite;
  }

  .panel-rings::after {
    animation: ring-breathe var(--page-ring-breathe-speed) ease-in-out infinite;
  }

  .panel-bars span:nth-child(1) { animation: bar-pulse var(--page-bar-speed) ease-in-out infinite; }
  .panel-bars span:nth-child(2) { animation: bar-pulse var(--page-bar-speed) ease-in-out 0.14s infinite; }
  .panel-bars span:nth-child(3) { animation: bar-pulse var(--page-bar-speed) ease-in-out 0.28s infinite; }
  .panel-bars span:nth-child(4) { animation: bar-pulse var(--page-bar-speed) ease-in-out 0.42s infinite; }

  .visual-grid {
    animation: grid-drift var(--page-grid-speed) linear infinite;
  }

  .visual-grid::after {
    animation: page-scan var(--page-scan-speed) ease-in-out infinite;
  }

  .hero-video-stage,
  .signal-screen,
  .process-chart,
  .page-visual {
    position: relative;
    overflow: hidden;
  }

  .hero-video-stage::before,
  .signal-screen::before,
  .process-chart::before,
  .page-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 100%);
    transform: translateX(-140%);
    animation: panel-sheen var(--page-sheen-speed) ease-in-out infinite;
    pointer-events: none;
  }

  .visual-panel::before {
    animation: panel-glow-drift var(--page-glow-speed) ease-in-out infinite;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 95, 101, 0.16);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(255, 95, 101, 0);
  }
}

@keyframes ambient-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes ambient-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-22px, 16px, 0);
  }
}

@keyframes float-core {
  0%,
  100% {
    transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  }

  50% {
    transform: translate3d(var(--pointer-x), calc(var(--pointer-y) - 10px), 0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(calc(var(--pointer-x) * 0.45), calc(var(--pointer-y) * 0.45), 0);
  }

  50% {
    transform: translate3d(calc(var(--pointer-x) * 0.45), calc((var(--pointer-y) * 0.45) - 10px), 0);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(calc(var(--pointer-x) * 0.22), calc(var(--pointer-y) * 0.22), 0);
  }

  50% {
    transform: translate3d(calc(var(--pointer-x) * 0.22), calc((var(--pointer-y) * 0.22) - 14px), 0);
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    opacity: 0.78;
    filter: blur(16px);
  }

  50% {
    opacity: 1;
    filter: blur(20px);
  }
}

@keyframes panel-breathe {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    border-color: rgba(255, 255, 255, 0.08);
  }

  50% {
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 88, 94, 0.08);
    border-color: rgba(255, 98, 104, 0.16);
  }
}

@keyframes float-badge {
  0%,
  100% {
    transform: translate3d(calc(var(--pointer-x) * -0.35), calc(var(--pointer-y) * -0.35), 0) rotate(0deg);
  }

  50% {
    transform: translate3d(calc(var(--pointer-x) * -0.35), calc((var(--pointer-y) * -0.35) - 8px), 0) rotate(2deg);
  }
}

@keyframes shine {
  0%,
  72%,
  100% {
    transform: translateX(-140%);
  }

  86% {
    transform: translateX(140%);
  }
}

@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 24px, 0);
  }
}

@keyframes panel-sheen {
  0%,
  85%,
  100% {
    transform: translateX(-140%);
  }

  92% {
    transform: translateX(140%);
  }
}

@keyframes bar-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.85;
  }

  50% {
    transform: scaleY(1.14);
    opacity: 1;
  }
}

@keyframes wave-shift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(8px);
  }
}

@keyframes page-scan {
  0%,
  100% {
    transform: translateY(-125%);
    opacity: 0;
  }

  12%,
  74% {
    opacity: 0.7;
  }

  52% {
    transform: translateY(245%);
    opacity: 0.22;
  }
}

@keyframes panel-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(-8px, -10px, 0) scale(1.08);
    opacity: 0.7;
  }
}

@keyframes display-scan {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(140%);
  }
}

@keyframes trace-draw {
  0%,
  14% {
    stroke-dashoffset: 420;
    opacity: 0.2;
  }

  34%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -420;
    opacity: 0.28;
  }
}

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

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

@keyframes ring-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}

@keyframes services-run-a {
  0% { left: 20%; top: 46%; opacity: 0; }
  12% { opacity: 1; }
  52% { left: 46%; top: 36%; opacity: 1; }
  100% { left: 68%; top: 28%; opacity: 0; }
}

@keyframes services-run-b {
  0% { left: 38%; top: 56%; opacity: 0; }
  16% { opacity: 1; }
  58% { left: 62%; top: 44%; opacity: 1; }
  100% { left: 80%; top: 34%; opacity: 0; }
}

@keyframes services-scan {
  0%,
  100% { transform: translateX(-120%); opacity: 0; }
  18% { opacity: 0.9; }
  58% { transform: translateX(120%); opacity: 0.26; }
}

@keyframes service-chip-pulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }

  50% {
    background: rgba(255, 88, 94, 0.12);
    border-color: rgba(255, 88, 94, 0.24);
  }
}

@keyframes rail-blink {
  0%,
  100% { opacity: 0.34; transform: scaleY(0.72); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes detail-pulse-a {
  0% { left: 14%; top: 56%; opacity: 0; }
  10% { opacity: 1; }
  58% { left: 64%; top: 56%; opacity: 1; }
  100% { left: 78%; top: 42%; opacity: 0; }
}

@keyframes detail-pulse-b {
  0% { left: 40%; top: 48%; opacity: 0; }
  12% { opacity: 1; }
  56% { left: 74%; top: 42%; opacity: 1; }
  100% { left: 82%; top: 36%; opacity: 0; }
}

@keyframes blog-stream-a {
  from { transform: translateX(-16px); opacity: 0.66; }
  50% { transform: translateX(18px); opacity: 1; }
  to { transform: translateX(-16px); opacity: 0.66; }
}

@keyframes blog-stream-b {
  from { transform: translateX(14px); opacity: 0.72; }
  50% { transform: translateX(-18px); opacity: 1; }
  to { transform: translateX(14px); opacity: 0.72; }
}

@keyframes blog-card-a {
  0%, 100% { transform: translateX(0); opacity: 0.72; }
  50% { transform: translateX(-14px); opacity: 1; }
}

@keyframes blog-card-b {
  0%, 100% { transform: translateX(0); opacity: 0.66; }
  50% { transform: translateX(16px); opacity: 1; }
}

@keyframes blog-card-c {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(-10px); opacity: 1; }
}

@keyframes orbit-dot-a {
  0% { left: 72%; top: 44%; }
  25% { left: 52%; top: 18%; }
  50% { left: 20%; top: 42%; }
  75% { left: 46%; top: 74%; }
  100% { left: 72%; top: 44%; }
}

@keyframes orbit-dot-b {
  0% { left: 46%; top: 74%; }
  25% { left: 18%; top: 42%; }
  50% { left: 52%; top: 18%; }
  75% { left: 72%; top: 44%; }
  100% { left: 46%; top: 74%; }
}

@keyframes faq-row {
  0%, 100% { transform: scaleX(0.94); opacity: 0.64; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes careers-beacon-run {
  0% { left: 18%; bottom: 18%; opacity: 0; }
  12% { opacity: 1; }
  38% { left: 38%; bottom: 30%; }
  64% { left: 58%; bottom: 42%; }
  88% { left: 76%; bottom: 56%; opacity: 1; }
  100% { left: 82%; bottom: 62%; opacity: 0; }
}

@keyframes trust-arc {
  0%, 100% { opacity: 0.48; transform: translateY(0); }
  50% { opacity: 0.92; transform: translateY(-8px); }
}

@keyframes trust-signal-a {
  0% { left: 18%; bottom: 26%; opacity: 0; }
  14% { opacity: 1; }
  60% { left: 42%; bottom: 40%; opacity: 1; }
  100% { left: 58%; bottom: 32%; opacity: 0; }
}

@keyframes trust-signal-b {
  0% { left: 42%; bottom: 40%; opacity: 0; }
  12% { opacity: 1; }
  58% { left: 64%; bottom: 34%; opacity: 1; }
  100% { left: 76%; bottom: 26%; opacity: 0; }
}

@keyframes trust-signal-c {
  0% { left: 62%; bottom: 30%; opacity: 0; }
  16% { opacity: 1; }
  60% { left: 76%; bottom: 24%; opacity: 1; }
  100% { left: 84%; bottom: 20%; opacity: 0; }
}

@keyframes tools-pulse-a {
  0% { left: 18%; top: 30%; opacity: 0; }
  10% { opacity: 1; }
  48% { left: 42%; top: 46%; }
  78% { left: 74%; top: 44%; opacity: 1; }
  100% { left: 80%; top: 44%; opacity: 0; }
}

@keyframes tools-pulse-b {
  0% { left: 18%; bottom: 22%; opacity: 0; }
  10% { opacity: 1; }
  46% { left: 42%; top: 48%; }
  78% { left: 74%; bottom: 22%; opacity: 1; }
  100% { left: 80%; bottom: 22%; opacity: 0; }
}

@keyframes visual-aurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(14px, -10px, 0) scale(1.08);
    opacity: 0.96;
  }
}

@keyframes data-lanes {
  from {
    background-position: 0 0, 0 0, -180px 0;
  }

  to {
    background-position: 0 0, 28px 0, 180px 0;
  }
}

@keyframes editorial-scroll {
  from {
    background-position: 0 0, 0 0, -160px 0;
  }

  to {
    background-position: 0 0, 0 16px, 160px 0;
  }
}

@keyframes faq-sweep {
  from {
    transform: translateX(-4px);
    opacity: 0.74;
  }

  50% {
    transform: translateX(8px);
    opacity: 0.96;
  }

  to {
    transform: translateX(-4px);
    opacity: 0.74;
  }
}

@keyframes ladder-rise {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.78;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes confidence-wave {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }

  50% {
    transform: translateX(10px);
    opacity: 0.96;
  }
}

@keyframes testimonial-echo {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.96;
  }
}

@keyframes route-flow {
  from {
    background-position: 0 0, 0 0, -180px 0;
  }

  to {
    background-position: 0 0, 0 0, 180px 0;
  }
}

@keyframes tools-scan {
  0%,
  100% {
    transform: translateY(-12px);
    opacity: 0.54;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.96;
  }
}

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

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

@keyframes beacon-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.58;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.98;
  }
}

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

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

@keyframes chart-ping {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 88, 94, 0.28);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 16px rgba(255, 88, 94, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 88, 94, 0);
  }
}

@keyframes pulse-run-a {
  0% {
    top: 33%;
    left: 24%;
    opacity: 0;
  }

  16%,
  74% {
    opacity: 1;
  }

  100% {
    top: 40%;
    left: 57%;
    opacity: 0;
  }
}

@keyframes pulse-run-b {
  0% {
    top: 58%;
    left: 29%;
    opacity: 0;
  }

  16%,
  74% {
    opacity: 1;
  }

  100% {
    top: 67%;
    left: 46%;
    opacity: 0;
  }
}

@keyframes pulse-run-c {
  0% {
    top: 71%;
    left: 52%;
    opacity: 0;
  }

  16%,
  74% {
    opacity: 1;
  }

  100% {
    top: 78%;
    left: 67%;
    opacity: 0;
  }
}

@keyframes track-flow {
  0%,
  15% {
    transform: translateX(-100%);
  }

  45%,
  70% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes vertical-scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes particle-drift {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0) scale(0.9);
  }

  30% {
    opacity: 0.6;
    transform: translate3d(12px, -10px, 0) scale(1.12);
  }

  65% {
    opacity: 0.28;
    transform: translate3d(-8px, 14px, 0) scale(0.96);
  }
}

@keyframes line-point-a {
  0% {
    top: 31%;
    left: 28%;
    opacity: 0;
  }

  14%,
  82% {
    opacity: 1;
  }

  100% {
    top: 14%;
    left: 78%;
    opacity: 0;
  }
}

@keyframes line-point-b {
  0% {
    top: 38%;
    left: 18%;
    opacity: 0;
  }

  14%,
  82% {
    opacity: 0.85;
  }

  100% {
    top: 22%;
    left: 66%;
    opacity: 0;
  }
}

@keyframes metrics-point-a {
  0% {
    top: 56%;
    left: 18%;
    opacity: 0;
  }

  16%,
  82% {
    opacity: 1;
  }

  100% {
    top: 25%;
    left: 78%;
    opacity: 0;
  }
}

@keyframes metrics-point-b {
  0% {
    top: 48%;
    left: 28%;
    opacity: 0;
  }

  16%,
  82% {
    opacity: 0.85;
  }

  100% {
    top: 18%;
    left: 66%;
    opacity: 0;
  }
}

@keyframes priority-card-breathe {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 18px 30px rgba(0, 0, 0, 0.16);
    border-color: rgba(255, 110, 116, 0.16);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 22px 34px rgba(0, 0, 0, 0.2),
      0 0 24px rgba(255, 93, 99, 0.08);
    border-color: rgba(255, 128, 134, 0.22);
  }
}

@keyframes flow-run-a {
  0% {
    top: 35%;
    left: 20%;
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    top: 48%;
    left: 56%;
    opacity: 0;
  }
}

@keyframes flow-run-b {
  0% {
    top: 55%;
    left: 56%;
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    top: 66%;
    left: 73%;
    opacity: 0;
  }
}

@keyframes runner-a {
  0% {
    top: 25.4%;
    left: 30%;
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  100% {
    top: 36.8%;
    left: 57%;
    opacity: 0;
  }
}

@keyframes runner-b {
  0% {
    top: 52.3%;
    left: 28%;
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  100% {
    top: 69%;
    left: 47%;
    opacity: 0;
  }
}

@keyframes runner-c {
  0% {
    bottom: 18.2%;
    left: 39%;
    opacity: 0;
  }

  10%,
  80% {
    opacity: 1;
  }

  100% {
    bottom: 12.2%;
    left: 63%;
    opacity: 0;
  }
}

@keyframes drift-ring {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes drift-block {
  0%,
  100% {
    transform: rotate(18deg) translateY(0);
  }

  50% {
    transform: rotate(24deg) translateY(-16px);
  }
}

@keyframes section-float {
  0%,
  100% {
    transform: rotate(18deg) translateY(0);
    opacity: 0.55;
  }

  50% {
    transform: rotate(24deg) translateY(-8px);
    opacity: 0.82;
  }
}

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

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

@keyframes flag-wave {
  0%,
  100% {
    transform: perspective(140px) rotateY(0deg);
  }

  50% {
    transform: perspective(140px) rotateY(-12deg);
  }
}

@keyframes service-lane-glow {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(0.96);
  }

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

@keyframes lane-run-a {
  0% { left: 6%; top: 10%; opacity: 0; }
  12% { opacity: 1; }
  48% { left: 76%; top: 10%; opacity: 1; }
  62% { left: 84%; top: 34%; opacity: 0.8; }
  100% { left: 84%; top: 34%; opacity: 0; }
}

@keyframes lane-run-b {
  0% { left: 18%; top: 32%; opacity: 0; }
  16% { opacity: 1; }
  54% { left: 74%; top: 32%; opacity: 1; }
  70% { left: 84%; top: 58%; opacity: 0.75; }
  100% { left: 84%; top: 58%; opacity: 0; }
}

@keyframes lane-run-c {
  0% { left: 12%; top: 56%; opacity: 0; }
  16% { opacity: 1; }
  58% { left: 72%; top: 56%; opacity: 1; }
  76% { left: 84%; top: 78%; opacity: 0.76; }
  100% { left: 84%; top: 78%; opacity: 0; }
}

@keyframes cloud-sync-a {
  0% { left: 8%; top: 8%; opacity: 0; }
  14% { opacity: 1; }
  50% { left: 76%; top: 8%; opacity: 1; }
  100% { left: 90%; top: 8%; opacity: 0; }
}

@keyframes cloud-sync-b {
  0% { left: 12%; top: 44%; opacity: 0; }
  16% { opacity: 1; }
  56% { left: 70%; top: 44%; opacity: 1; }
  100% { left: 86%; top: 44%; opacity: 0; }
}

@keyframes cloud-sync-c {
  0% { left: 16%; top: 78%; opacity: 0; }
  18% { opacity: 1; }
  62% { left: 74%; top: 78%; opacity: 1; }
  100% { left: 90%; top: 78%; opacity: 0; }
}

@keyframes infra-flow-a {
  0% { left: 12%; top: 26%; opacity: 0; }
  14% { opacity: 1; }
  38% { left: 34%; top: 44%; opacity: 1; }
  66% { left: 50%; top: 28%; opacity: 1; }
  100% { left: 72%; top: 46%; opacity: 0; }
}

@keyframes infra-flow-b {
  0% { left: 34%; top: 44%; opacity: 0; }
  16% { opacity: 1; }
  52% { left: 62%; top: 70%; opacity: 1; }
  100% { left: 82%; top: 46%; opacity: 0; }
}

@keyframes continuity-run {
  0% { left: 8%; opacity: 0; }
  14% { opacity: 1; }
  38% { left: 32%; opacity: 1; }
  62% { left: 56%; opacity: 1; }
  84% { left: 80%; opacity: 1; }
  100% { left: 90%; opacity: 0; }
}

@keyframes strategy-run {
  0% { left: 12%; top: 54%; opacity: 0; }
  12% { opacity: 1; }
  38% { left: 34%; top: 48%; opacity: 1; }
  64% { left: 54%; top: 40%; opacity: 1; }
  100% { left: 74%; top: 28%; opacity: 0; }
}

@keyframes blog-stage-breathe {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes blog-ticker-glide {
  0% { transform: translateX(-140%); opacity: 0; }
  12% { opacity: 1; }
  68% { transform: translateX(42%); opacity: 1; }
  100% { transform: translateX(76%); opacity: 0; }
}

@keyframes blog-sheet-drift-a {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes blog-sheet-drift-b {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes blog-sheet-drift-c {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes blog-media-scan {
  0% { transform: translateX(-120%); opacity: 0; }
  18% { opacity: 1; }
  62% { transform: translateX(22%); opacity: 1; }
  100% { transform: translateX(58%); opacity: 0; }
}

@keyframes blog-halo-spin {
  0% { transform: rotate(0deg); opacity: 0.76; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0.76; }
}

@keyframes blog-trend-tilt-a {
  0%,
  100% {
    transform: rotate(-18deg) scaleX(1);
  }

  50% {
    transform: rotate(-14deg) scaleX(1.06);
  }
}

@keyframes blog-trend-tilt-b {
  0%,
  100% {
    transform: rotate(20deg) scaleX(1);
  }

  50% {
    transform: rotate(24deg) scaleX(1.05);
  }
}

@keyframes blog-trend-point-a {
  0% { left: 38%; top: 58%; opacity: 0; }
  16% { opacity: 1; }
  54% { left: 64%; top: 44%; opacity: 1; }
  100% { left: 76%; top: 30%; opacity: 0; }
}

@keyframes blog-trend-point-b {
  0% { left: 20%; top: 72%; opacity: 0; }
  16% { opacity: 1; }
  58% { left: 48%; top: 54%; opacity: 1; }
  100% { left: 66%; top: 40%; opacity: 0; }
}

@keyframes blog-rail-wave-a {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(0.96);
  }

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

@keyframes blog-rail-wave-b {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(0.94);
  }

  50% {
    opacity: 0.96;
    transform: scaleX(0.99);
  }
}

@keyframes blog-rail-flow-a {
  0% { left: 6%; top: -1px; opacity: 0; }
  14% { opacity: 1; }
  58% { left: 88%; top: -1px; opacity: 1; }
  100% { left: 96%; top: -1px; opacity: 0; }
}

@keyframes blog-rail-flow-b {
  0% { left: 18%; top: 23px; opacity: 0; }
  14% { opacity: 1; }
  62% { left: 84%; top: 23px; opacity: 1; }
  100% { left: 94%; top: 23px; opacity: 0; }
}

@keyframes blog-rail-flow-c {
  0% { left: 10%; top: 71px; opacity: 0; }
  14% { opacity: 1; }
  64% { left: 86%; top: 71px; opacity: 1; }
  100% { left: 96%; top: 71px; opacity: 0; }
}

@keyframes blog-scanfield {
  0% { transform: translateX(-130%); opacity: 0; }
  18% { opacity: 0.9; }
  56% { transform: translateX(12%); opacity: 1; }
  100% { transform: translateX(54%); opacity: 0; }
}

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

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

@keyframes blog-paper-sheen {
  0% { transform: translateX(-140%); opacity: 0; }
  16% { opacity: 1; }
  60% { transform: translateX(18%); opacity: 1; }
  100% { transform: translateX(58%); opacity: 0; }
}

@keyframes blog-network-run-a {
  0% { left: 2%; top: 12%; opacity: 0; }
  12% { opacity: 1; }
  36% { left: 34%; top: 5%; opacity: 1; }
  66% { left: 60%; top: 14%; opacity: 1; }
  100% { left: 76%; top: 38%; opacity: 0; }
}

@keyframes blog-network-run-b {
  0% { left: 20%; top: 62%; opacity: 0; }
  14% { opacity: 1; }
  46% { left: 44%; top: 58%; opacity: 1; }
  74% { left: 62%; top: 46%; opacity: 1; }
  100% { left: 78%; top: 38%; opacity: 0; }
}

@keyframes blog-focus-spin {
  0% { transform: rotate(0deg); opacity: 0.78; }
  50% { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0.78; }
}

@keyframes blog-wave-lane-a {
  0%,
  100% {
    opacity: 0.66;
    transform: scaleX(0.95);
  }

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

@keyframes blog-wave-lane-b {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(0.93);
  }

  50% {
    opacity: 0.94;
    transform: scaleX(0.99);
  }
}

@keyframes blog-wave-run-a {
  0% { left: 6%; top: -2px; opacity: 0; }
  14% { opacity: 1; }
  60% { left: 88%; top: -2px; opacity: 1; }
  100% { left: 96%; top: -2px; opacity: 0; }
}

@keyframes blog-wave-run-b {
  0% { left: 20%; top: 26px; opacity: 0; }
  16% { opacity: 1; }
  62% { left: 82%; top: 26px; opacity: 1; }
  100% { left: 94%; top: 26px; opacity: 0; }
}

@keyframes blog-wave-run-c {
  0% { left: 10%; top: 54px; opacity: 0; }
  16% { opacity: 1; }
  66% { left: 86%; top: 54px; opacity: 1; }
  100% { left: 96%; top: 54px; opacity: 0; }
}

@keyframes blog-chart-tilt-a {
  0%,
  100% {
    transform: rotate(-16deg) scaleX(1);
  }

  50% {
    transform: rotate(-12deg) scaleX(1.05);
  }
}

@keyframes blog-chart-tilt-b {
  0%,
  100% {
    transform: rotate(20deg) scaleX(1);
  }

  50% {
    transform: rotate(24deg) scaleX(1.06);
  }
}

@keyframes blog-chart-orb-a {
  0% { left: 18%; top: 72%; opacity: 0; }
  16% { opacity: 1; }
  54% { left: 44%; top: 54%; opacity: 1; }
  100% { left: 68%; top: 38%; opacity: 0; }
}

@keyframes blog-chart-orb-b {
  0% { left: 34%; top: 64%; opacity: 0; }
  16% { opacity: 1; }
  58% { left: 60%; top: 48%; opacity: 1; }
  100% { left: 82%; top: 24%; opacity: 0; }
}

@keyframes blog-chart-orb-c {
  0% { left: 52%; top: 54%; opacity: 0; }
  16% { opacity: 1; }
  56% { left: 74%; top: 32%; opacity: 1; }
  100% { left: 88%; top: 18%; opacity: 0; }
}

@keyframes blog-stage-beam {
  0% { transform: translateX(-130%); opacity: 0; }
  18% { opacity: 0.9; }
  54% { transform: translateX(8%); opacity: 1; }
  100% { transform: translateX(50%); opacity: 0; }
}

@keyframes services-stage-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes services-aurora-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate3d(18px, -12px, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes services-paper-sheen {
  0% { transform: translateX(-140%); }
  52% { transform: translateX(10%); }
  100% { transform: translateX(120%); }
}

@keyframes services-rail-wave-a {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.92);
  }

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

@keyframes services-rail-wave-b {
  0%,
  100% {
    opacity: 0.62;
    transform: scaleX(0.95);
  }

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

@keyframes services-ticket-flow-a {
  0% { left: 4%; top: -1px; opacity: 0; }
  14% { opacity: 1; }
  60% { left: 74%; top: -1px; opacity: 1; }
  100% { left: 82%; top: -1px; opacity: 0; }
}

@keyframes services-ticket-flow-b {
  0% { left: 10%; top: 27px; opacity: 0; }
  16% { opacity: 1; }
  62% { left: 86%; top: 27px; opacity: 1; }
  100% { left: 92%; top: 27px; opacity: 0; }
}

@keyframes services-ticket-flow-c {
  0% { left: 22%; top: 55px; opacity: 0; }
  16% { opacity: 1; }
  66% { left: 68%; top: 55px; opacity: 1; }
  100% { left: 76%; top: 55px; opacity: 0; }
}

@keyframes services-trace-tilt-a {
  0%,
  100% {
    transform: rotate(-16deg) scaleX(1);
  }

  50% {
    transform: rotate(-12deg) scaleX(1.05);
  }
}

@keyframes services-trace-tilt-b {
  0%,
  100% {
    transform: rotate(11deg) scaleX(1);
  }

  50% {
    transform: rotate(15deg) scaleX(1.04);
  }
}

@keyframes services-network-flow-a {
  0% { left: 5%; top: 47%; opacity: 0; }
  14% { opacity: 1; }
  54% { left: 41%; top: 35%; opacity: 1; }
  100% { left: 74%; top: 43%; opacity: 0; }
}

@keyframes services-network-flow-b {
  0% { left: 26%; top: 68%; opacity: 0; }
  14% { opacity: 1; }
  56% { left: 54%; top: 56%; opacity: 1; }
  100% { left: 63%; top: 25%; opacity: 0; }
}

@keyframes services-rhythm-flow-a {
  0% { left: 8%; top: -1px; opacity: 0; }
  14% { opacity: 1; }
  60% { left: 88%; top: -1px; opacity: 1; }
  100% { left: 96%; top: -1px; opacity: 0; }
}

@keyframes services-rhythm-flow-b {
  0% { left: 18%; top: 23px; opacity: 0; }
  16% { opacity: 1; }
  62% { left: 82%; top: 23px; opacity: 1; }
  100% { left: 92%; top: 23px; opacity: 0; }
}

@keyframes services-rhythm-flow-c {
  0% { left: 10%; top: 71px; opacity: 0; }
  16% { opacity: 1; }
  66% { left: 86%; top: 71px; opacity: 1; }
  100% { left: 94%; top: 71px; opacity: 0; }
}

@keyframes services-stage-scan {
  0% { transform: translateX(-130%); opacity: 0; }
  18% { opacity: 0.9; }
  52% { transform: translateX(6%); opacity: 1; }
  100% { transform: translateX(48%); opacity: 0; }
}

@keyframes services-scene-breathe {
  0%,
  100% {
    opacity: 0.84;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes services-aurora-swell {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }

  50% {
    transform: translate3d(18px, -12px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes services-scene-sheen {
  0% { transform: translateX(-135%); opacity: 0; }
  18% { opacity: 0.8; }
  56% { transform: translateX(10%); opacity: 1; }
  100% { transform: translateX(52%); opacity: 0; }
}

@keyframes services-backlight-a {
  0%,
  100% {
    opacity: 0.4;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.78;
    transform: translate3d(10px, -8px, 0);
  }
}

@keyframes services-backlight-b {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(-12px, 10px, 0);
  }
}

@keyframes services-backlight-c {
  0%,
  100% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.68;
    transform: translate3d(14px, -12px, 0);
  }
}

@keyframes services-console-line-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.95);
  }

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

@keyframes services-pill-glow {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0);
  }

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

@keyframes services-rail-breathe {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.92);
  }

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

@keyframes services-bar-rise {
  0%,
  100% {
    transform: scaleY(0.9);
    opacity: 0.78;
  }

  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
}

@keyframes services-trace-draw {
  0% {
    stroke-dashoffset: 220;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -30;
    opacity: 0;
  }
}

@keyframes services-flow-dash {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes services-node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes services-ring-spin {
  to {
    transform: rotate(360deg);
    transform-origin: 500px 140px;
  }
}

@keyframes services-ring-spin-reverse {
  to {
    transform: rotate(-360deg);
    transform-origin: 500px 140px;
  }
}

@keyframes services-core-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes services-sweep-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes services-orbit-a {
  0% { transform: translate(438px, 214px); opacity: 0; }
  18% { opacity: 1; }
  54% { transform: translate(490px, 184px); opacity: 1; }
  100% { transform: translate(544px, 146px); opacity: 0; }
}

@keyframes services-orbit-b {
  0% { transform: translate(300px, 240px); opacity: 0; }
  18% { opacity: 1; }
  58% { transform: translate(420px, 218px); opacity: 1; }
  100% { transform: translate(540px, 248px); opacity: 0; }
}

@keyframes services-orbit-c {
  0% { transform: translate(228px, 216px); opacity: 0; }
  18% { opacity: 1; }
  56% { transform: translate(388px, 266px); opacity: 1; }
  100% { transform: translate(576px, 358px); opacity: 0; }
}

@keyframes services-orbit-d {
  0% { transform: translate(144px, 290px); opacity: 0; }
  18% { opacity: 1; }
  54% { transform: translate(286px, 252px); opacity: 1; }
  100% { transform: translate(438px, 214px); opacity: 0; }
}

@keyframes services-ticket-sheen {
  0% { transform: translateX(-140%); }
  52% { transform: translateX(8%); }
  100% { transform: translateX(118%); }
}

@keyframes services-ticket-float-a {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.96;
  }

  50% {
    transform: translateY(-6px) scale(1.02);
    opacity: 1;
  }
}

@keyframes services-ticket-float-b {
  0%,
  100% {
    transform: translateY(0) scale(0.94);
    opacity: 0.76;
  }

  50% {
    transform: translateY(-4px) scale(0.97);
    opacity: 0.9;
  }
}

@keyframes services-ticket-float-c {
  0%,
  100% {
    transform: translateY(0) scale(0.88);
    opacity: 0.62;
  }

  50% {
    transform: translateY(-3px) scale(0.91);
    opacity: 0.76;
  }
}

@keyframes services-pulse-journey-a {
  0% { left: 24%; top: 56%; opacity: 0; }
  12% { opacity: 1; }
  48% { left: 52%; top: 48%; opacity: 1; }
  72% { left: 67%; top: 36%; opacity: 1; }
  100% { left: 74%; top: 30%; opacity: 0; }
}

@keyframes services-pulse-journey-b {
  0% { left: 31%; top: 62%; opacity: 0; }
  12% { opacity: 1; }
  48% { left: 56%; top: 54%; opacity: 1; }
  72% { left: 72%; top: 52%; opacity: 1; }
  100% { left: 82%; top: 62%; opacity: 0; }
}

@keyframes services-pulse-journey-c {
  0% { left: 40%; top: 48%; opacity: 0; }
  12% { opacity: 1; }
  44% { left: 58%; top: 46%; opacity: 1; }
  70% { left: 70%; top: 58%; opacity: 1; }
  100% { left: 78%; top: 72%; opacity: 0; }
}

@keyframes services-line-drift-a {
  0%,
  100% {
    transform: rotate(-22deg) scaleX(1);
  }

  50% {
    transform: rotate(-18deg) scaleX(1.05);
  }
}

@keyframes services-line-drift-b {
  0%,
  100% {
    transform: rotate(12deg) scaleX(1);
  }

  50% {
    transform: rotate(16deg) scaleX(1.06);
  }
}

@keyframes services-delivery-node-a {
  0% { left: 42%; top: 46%; opacity: 0; }
  18% { opacity: 1; }
  58% { left: 60%; top: 36%; opacity: 1; }
  100% { left: 72%; top: 24%; opacity: 0; }
}

@keyframes services-delivery-node-b {
  0% { left: 24%; top: 60%; opacity: 0; }
  18% { opacity: 1; }
  58% { left: 48%; top: 48%; opacity: 1; }
  100% { left: 64%; top: 34%; opacity: 0; }
}

@keyframes services-story-scan {
  0% { transform: translateX(-130%); opacity: 0; }
  18% { opacity: 0.84; }
  56% { transform: translateX(10%); opacity: 1; }
  100% { transform: translateX(52%); opacity: 0; }
}

@keyframes contact-ring-breathe {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.02);
  }
}

@keyframes contact-pulse-route-a {
  0% { transform: translate(0, 0); opacity: 0; }
  16% { opacity: 1; }
  56% { transform: translate(118px, -36px); opacity: 1; }
  100% { transform: translate(216px, 8px); opacity: 0; }
}

@keyframes contact-pulse-route-b {
  0% { transform: translate(0, 0); opacity: 0; }
  16% { opacity: 1; }
  58% { transform: translate(72px, -52px); opacity: 1; }
  100% { transform: translate(138px, -88px); opacity: 0; }
}

@keyframes contact-pulse-route-c {
  0% { transform: translate(0, 0); opacity: 0; }
  16% { opacity: 1; }
  58% { transform: translate(54px, -60px); opacity: 1; }
  100% { transform: translate(88px, -124px); opacity: 0; }
}

@keyframes contact-panel-scan {
  0% { transform: translateX(-20%); opacity: 0.35; }
  50% { transform: translateX(18%); opacity: 1; }
  100% { transform: translateX(34%); opacity: 0.35; }
}

@keyframes contact-beacon-wave {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

@keyframes contact-stage-sweep {
  0% { transform: translateX(-110%); opacity: 0; }
  18% { opacity: 0.6; }
  58% { transform: translateX(8%); opacity: 0.92; }
  100% { transform: translateX(44%); opacity: 0; }
}

@keyframes contact-stage-drift {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes contact-line-breathe-a {
  0%,
  100% {
    opacity: 0.72;
    transform: rotate(18deg) scaleX(1);
  }

  50% {
    opacity: 1;
    transform: rotate(16deg) scaleX(1.06);
  }
}

@keyframes contact-line-breathe-b {
  0%,
  100% {
    opacity: 0.7;
    transform: rotate(-18deg) scaleX(1);
  }

  50% {
    opacity: 0.96;
    transform: rotate(-15deg) scaleX(1.08);
  }
}

@keyframes contact-line-breathe-c {
  0%,
  100% {
    opacity: 0.66;
    transform: rotate(26deg) scaleX(1);
  }

  50% {
    opacity: 0.94;
    transform: rotate(22deg) scaleX(1.07);
  }
}

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

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

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

  50% {
    transform: translateY(5px);
  }
}

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

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

@keyframes contact-beacon-core {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.86;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

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

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

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

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

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

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(255, 106, 106, 0.22);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(255, 106, 106, 0);
  }
}

@media (max-width: 860px) {
  .security-tools-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .security-tools-card-feature {
    grid-row: auto;
    grid-template-columns: 1fr;
  }
}
