/* ═══════════════════════════════════════════════════════════════
   EXPANDZA — PREMIUM INTERACTIONS
   Custom cursor · scroll-spy rail · scroll-driven engine · hero parallax
═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor [data-magnetic],
  html.has-custom-cursor .service-row,
  html.has-custom-cursor .approach-row,
  html.has-custom-cursor .industry-tab,
  html.has-custom-cursor .swatch,
  html.has-custom-cursor .blog-card,
  html.has-custom-cursor .faq-question {
    cursor: none;
  }
  /* Keep the system caret in form fields */
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select { cursor: text; }
}

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  view-transition-name: none;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin: -2.5px 0 0 -2.5px;
  transition: opacity 0.2s, width 0.25s var(--ease), height 0.25s var(--ease), background 0.2s, margin 0.25s var(--ease);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 28px; height: 28px;
  margin-left: -14px; margin-top: -14px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transition: width 0.32s var(--ease), height 0.32s var(--ease),
              margin-left 0.32s var(--ease), margin-top 0.32s var(--ease),
              border-color 0.25s, background 0.25s, opacity 0.2s,
              border-radius 0.32s var(--ease);
  mix-blend-mode: difference;
}

/* States */
html.cur-link .cursor-ring {
  width: 52px; height: 52px;
  margin-left: -26px; margin-top: -26px;
  background: var(--mint-soft);
  border-color: var(--accent);
}
html.cur-link .cursor-dot { opacity: 0; }

html.cur-cta .cursor-ring {
  width: 64px; height: 64px;
  margin-left: -32px; margin-top: -32px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
html.cur-cta .cursor-dot {
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  background: #0A0A0A;
  mix-blend-mode: normal;
}
html.cur-cta .cursor-dot::before {
  content: '→';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  color: #0A0A0A;
}

html.cur-row .cursor-ring {
  width: 80px; height: 32px;
  margin-left: -40px; margin-top: -16px;
  border-radius: 4px;
  background: var(--mint-soft);
}
html.cur-row .cursor-dot {
  opacity: 1;
  width: 0; height: 0; margin: 0;
  background: transparent;
}
html.cur-row .cursor-dot::before {
  content: 'open →';
  position: absolute; top: 0; left: 0; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--accent); pointer-events: none;
  white-space: nowrap;
}

html.cur-text .cursor-ring {
  width: 2px; height: 22px;
  margin-left: -1px; margin-top: -11px;
  border-radius: 0;
  background: var(--accent);
  border-color: transparent;
}
html.cur-text .cursor-dot { opacity: 0; }

html.cur-down .cursor-ring {
  width: 64px; height: 64px;
  margin-left: -32px; margin-top: -32px;
  border-color: var(--accent);
  background: rgba(126,255,197,0.05);
}
html.cur-down .cursor-dot {
  opacity: 1;
  width: 0; height: 0; margin: 0;
}
html.cur-down .cursor-dot::before {
  content: 'scroll ↓';
  position: absolute; top: 0; left: 0; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--accent); pointer-events: none;
  white-space: nowrap;
}

/* While intro overlay runs, hide custom cursor (it has its own atmosphere) */
html.intro-active .cursor-dot,
html.intro-active .cursor-ring { opacity: 0 !important; }

/* ─── SCROLL-SPY RAIL ───────────────────────────────────────── */
.spy-rail {
  position: fixed; right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  view-transition-name: none;
}
.spy-rail.visible { opacity: 1; }

.spy-dot {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
}
.spy-dot .lbl {
  font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.spy-dot .pip {
  display: block;
  width: 4px; height: 4px;
  background: var(--muted-2);
  border-radius: 2px;
  transition: width 0.35s var(--ease), background 0.25s, height 0.35s var(--ease);
}
.spy-dot:hover .lbl { opacity: 1; transform: translateX(0); color: var(--cream); }
.spy-dot:hover .pip { background: var(--cream); width: 8px; }

.spy-dot.active .pip {
  width: 18px; height: 4px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-edge);
}
.spy-dot.active .lbl {
  opacity: 1; transform: translateX(0);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .spy-rail { display: none; }
}

/* ─── ENGINE DIAGRAM PRO — Professional Expanded Design ───────── */

.engine-diagram.pro {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(126,255,197,0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 60px 48px 40px;
  overflow: hidden;
  min-height: 420px;
}

/* Animated Canvas Layer */
.engine-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.engine-diagram.pro.engine-revealed .engine-canvas {
  opacity: 1;
}

/* SVG Glow Overlay */
.engine-svg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.glow-path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0;
  transition: all 1.5s var(--ease);
}

.engine-diagram.pro.engine-revealed .glow-path {
  stroke-dashoffset: 0;
  opacity: 0.6;
  animation: pathPulse 3s ease-in-out infinite;
}

@keyframes pathPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Staggered path animations */
.engine-diagram.pro.engine-revealed .glow-path:nth-child(1) { animation-delay: 0.1s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(2) { animation-delay: 0.2s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(3) { animation-delay: 0.3s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(4) { animation-delay: 0.4s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(5) { animation-delay: 0.5s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(6) { animation-delay: 0.6s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(7) { animation-delay: 0.7s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(8) { animation-delay: 0.8s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(9) { animation-delay: 0.9s; }
.engine-diagram.pro.engine-revealed .glow-path:nth-child(10) { animation-delay: 1s; }

/* Professional Flow Layout */
.engine-flow.pro {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 220px 280px 220px;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.engine-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.engine-col.inputs {
  align-items: flex-end;
}

.engine-col.outputs {
  align-items: flex-start;
}

/* Professional Cards */
.engine-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  overflow: hidden;
}

.engine-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.engine-card:hover {
  border-color: var(--line-2);
  background: var(--surface-3);
  transform: translateX(4px) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.engine-card:hover::before {
  width: 6px;
}

/* Card accents */
.card-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}

.card-accent.mint { background: var(--accent); }
.card-accent.lavender { background: var(--lavender); }
.card-accent.peach { background: var(--peach); }
.card-accent.revenue { 
  background: linear-gradient(180deg, var(--peach) 0%, var(--accent) 100%);
}

/* Card Icon */
.card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.engine-card:hover .card-icon {
  border-color: var(--line-2);
  color: var(--cream);
  background: var(--surface-2);
}

/* Card Content */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 140px;
}

.card-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.engine-card.out .card-tag {
  color: var(--peach);
}

/* Card Status Indicator - subtle pulse */
.card-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-status.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.engine-card.out .card-status.active {
  background: var(--peach);
  box-shadow: 0 0 8px var(--peach);
}

.engine-diagram.pro.engine-revealed .card-status.active {
  animation: statusGlow 3s ease-in-out infinite;
}

@keyframes statusGlow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 4px currentColor; }
  50% { opacity: 1; box-shadow: 0 0 12px currentColor; }
}

/* Staggered status animation */
.engine-diagram.pro.engine-revealed .engine-card:nth-child(1) .card-status { animation-delay: 0.2s; }
.engine-diagram.pro.engine-revealed .engine-card:nth-child(2) .card-status { animation-delay: 0.35s; }
.engine-diagram.pro.engine-revealed .engine-card:nth-child(3) .card-status { animation-delay: 0.5s; }
.engine-diagram.pro.engine-revealed .engine-card:nth-child(4) .card-status { animation-delay: 0.65s; }
.engine-diagram.pro.engine-revealed .engine-card:nth-child(5) .card-status { animation-delay: 0.8s; }
.engine-diagram.pro.engine-revealed .engine-card:nth-child(6) .card-status { animation-delay: 0.95s; }

/* Output Cards - Right aligned */
.engine-card.out {
  flex-direction: row-reverse;
}

.engine-card.out .card-content {
  align-items: flex-end;
  text-align: right;
}

.engine-card.out .card-accent {
  left: auto;
  right: 0;
}

.engine-card.out:hover {
  transform: translateX(-4px) translateY(-2px);
}

/* Card hover glow for outputs */
.engine-card.out::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--peach-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.engine-card.out:hover::after {
  opacity: 1;
}

/* PROFESSIONAL HUB */
.engine-hub-pro {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Expanding Rings */
.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
  opacity: 0;
}

.ring-1 {
  inset: 20px;
  transition: all 0.8s var(--ease);
}

.ring-2 {
  inset: 0;
  border-style: dashed;
  border-color: var(--line-2);
}

.ring-3 {
  inset: -20px;
  border: 1px solid var(--accent);
  opacity: 0;
}

.engine-diagram.pro.engine-revealed .hub-ring {
  opacity: 1;
}

.engine-diagram.pro.engine-revealed .ring-1 {
  border-color: var(--accent);
  opacity: 0.4;
  animation: ringBreathe 4s ease-in-out infinite;
}

.engine-diagram.pro.engine-revealed .ring-2 {
  animation: ringRotate 20s linear infinite;
}

.engine-diagram.pro.engine-revealed .ring-3 {
  animation: ringExpandFade 3s ease-out infinite;
}

@keyframes ringBreathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.5; }
}

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

@keyframes ringExpandFade {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Hub Core Content */
.hub-core-pro {
  position: relative;
  z-index: 2;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  width: 200px;
  text-align: center;
}

.hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hub-sys {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hub-version {
  font-family: var(--font-display);
  font-size: 0.55rem;
  color: var(--muted);
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
}

.hub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.hub-prompt {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
}

.hub-cmd {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.hub-cursor {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Terminal Logs */
.hub-logs {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.log-entry {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s ease;
}

.log-entry.active {
  color: var(--accent);
}

.engine-diagram.pro.engine-revealed .log-entry {
  opacity: 1;
  transform: translateX(0);
}

.engine-diagram.pro.engine-revealed .log-entry:nth-child(1) { transition-delay: 0.6s; }
.engine-diagram.pro.engine-revealed .log-entry:nth-child(2) { transition-delay: 0.7s; }
.engine-diagram.pro.engine-revealed .log-entry:nth-child(3) { transition-delay: 0.8s; }
.engine-diagram.pro.engine-revealed .log-entry:nth-child(4) { transition-delay: 0.9s; }

/* Hub Stats */
.hub-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.stat-dot.in {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.stat-dot.out {
  background: var(--peach);
  box-shadow: 0 0 0 2px var(--peach-soft);
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--muted);
}

/* Boot-up Sequence */
.engine-diagram.pro .engine-card {
  opacity: 0;
  transform: translateX(-20px);
}

.engine-diagram.pro .engine-card.out {
  transform: translateX(20px);
}

.engine-diagram.pro .engine-hub-pro {
  opacity: 0;
  transform: scale(0.85);
}

.engine-diagram.pro.engine-revealed .engine-card {
  opacity: 1;
  transform: translateX(0);
}

.engine-diagram.pro.engine-revealed .engine-hub-pro {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for cards */
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(1) { transition-delay: 0.1s; }
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(2) { transition-delay: 0.15s; }
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(3) { transition-delay: 0.2s; }
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(4) { transition-delay: 0.25s; }
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(5) { transition-delay: 0.3s; }
.engine-diagram.pro.engine-revealed .inputs .engine-card:nth-child(6) { transition-delay: 0.35s; }

.engine-diagram.pro.engine-revealed .hub-wrap .engine-hub-pro { transition-delay: 0.5s; }

.engine-diagram.pro.engine-revealed .outputs .engine-card:nth-child(1) { transition-delay: 0.7s; }
.engine-diagram.pro.engine-revealed .outputs .engine-card:nth-child(2) { transition-delay: 0.75s; }
.engine-diagram.pro.engine-revealed .outputs .engine-card:nth-child(3) { transition-delay: 0.8s; }
.engine-diagram.pro.engine-revealed .outputs .engine-card:nth-child(4) { transition-delay: 0.85s; }

/* Professional Legend */
.engine-legend.pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legend-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
}

.legend-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.mint {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.legend-dot.peach {
  background: var(--peach);
  box-shadow: 0 0 0 3px var(--peach-soft);
}

.legend-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--muted);
}

.legend-label.strong {
  color: var(--cream);
  font-weight: 600;
}

.legend-count,
.legend-status {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--accent);
  background: var(--surface);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.legend-status {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1100px) {
  .engine-flow.pro {
    grid-template-columns: 180px 240px 180px;
    gap: 40px;
  }
  
  .engine-card {
    min-width: 160px;
    padding: 14px 16px;
  }
  
  .engine-hub-pro {
    width: 220px;
    height: 220px;
  }
  
  .hub-core-pro {
    width: 170px;
    padding: 18px;
  }
}

@media (max-width: 900px) {
  .engine-diagram.pro {
    padding: 40px 24px;
  }
  
  .engine-flow.pro {
    grid-template-columns: 160px 200px 160px;
    gap: 24px;
  }
  
  .engine-card {
    min-width: 140px;
    padding: 12px 14px;
  }
  
  .card-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .hub-core-pro {
    padding: 16px;
    width: 150px;
  }
  
  .hub-cmd {
    font-size: 0.8rem;
  }
}

@media (max-width: 750px) {
  .engine-diagram.pro {
    padding: 32px 20px;
    min-height: auto;
  }
  
  .engine-flow.pro {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .engine-col.inputs,
  .engine-col.outputs {
    align-items: center;
  }
  
  .engine-card,
  .engine-card.out {
    flex-direction: row;
    text-align: left;
    min-width: 240px;
    max-width: 280px;
    width: 100%;
  }
  
  .engine-card.out .card-content {
    align-items: flex-start;
    text-align: left;
  }
  
  .engine-card.out .card-accent {
    left: 0;
    right: auto;
  }
  
  .engine-card:hover,
  .engine-card.out:hover {
    transform: translateY(-3px);
  }
  
  .engine-canvas,
  .engine-svg-overlay {
    display: none;
  }
  
  .engine-hub-pro {
    width: 240px;
    height: 240px;
    order: -1;
  }
  
  .hub-core-pro {
    width: 180px;
  }
  
  .engine-legend.pro {
    flex-direction: column;
    gap: 16px;
  }
  
  .legend-divider {
    display: none;
  }
  
  .legend-group {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .engine-diagram.pro.engine-revealed .glow-path {
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .engine-diagram.pro.engine-revealed .card-status.active {
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .engine-diagram.pro.engine-revealed .hub-ring {
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .engine-diagram.pro.engine-revealed .ring-1 {
    animation-duration: 8s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .engine-diagram.pro.engine-revealed .ring-2 {
    animation-duration: 40s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
  .engine-diagram.pro.engine-revealed .ring-3 {
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }
}

/* ─── HERO PARALLAX ─────────────────────────────────────────── */
.hero-headline {
  will-change: transform;
  transition: transform 0.18s linear;
}
.hero-status {
  will-change: transform;
  transition: transform 0.22s linear;
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
  html.has-custom-cursor, html.has-custom-cursor * { cursor: auto !important; }
  .engine-diagram .engine-col .engine-node:not(.hub) { opacity: 1 !important; transform: none !important; transition: none !important; }
  .engine-svg-overlay path { stroke-dashoffset: 0 !important; transition: none !important; }
  .hero-headline, .hero-status { transform: none !important; }
}
