.page-header-cnc {
  position: relative;
  overflow: hidden;
  background: #060b1e;
  color: #fff;
}

/* ── SVG background ── */
.page-header-cnc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ── Animated tool pulses ── */
.phc-flow {
  stroke-dasharray: 24 976;
  stroke-dashoffset: 0;
  animation: phcPulse linear infinite;
}

.phc-flow-1 { animation-duration: 5.5s; animation-delay: 0s; }
.phc-flow-3 { animation-duration: 6.2s; animation-delay: -3.5s; }
.phc-flow-5 { animation-duration: 6.8s; animation-delay: -4s; }

.phc-ring {
  stroke-dasharray: 46 954;
  stroke-dashoffset: 0;
  animation: phcPulse linear infinite;
}

.phc-ring-1 { animation-duration: 9s; }
.phc-ring-2 { animation-duration: 11s; animation-direction: reverse; }

@keyframes phcPulse {
  to { stroke-dashoffset: -1000; }
}

/* ── Content fade-in ── */
@keyframes phcFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.phc-fade-up {
  animation: phcFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phc-d-1 { animation-delay: 0.05s; }
.phc-d-2 { animation-delay: 0.15s; }
.phc-d-3 { animation-delay: 0.25s; }
.phc-d-4 { animation-delay: 0.35s; }

/* ── Spotlight ── */
.page-header-cnc-spotlight {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  background: radial-gradient(circle, rgba(10,154,185,0.12) 0%, transparent 70%);
  transition: opacity 0.7s ease;
}

.page-header-cnc:hover .page-header-cnc-spotlight {
  opacity: 1;
}

/* ── Inner layout ── */
.page-header-cnc-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

@media (min-width: 640px) {
  .page-header-cnc-inner { padding: 6rem 2rem; }
}

@media (min-width: 1024px) {
  .page-header-cnc-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 7rem 2.5rem;
  }
}

@media (min-width: 1280px) {
  .page-header-cnc-inner { padding: 7rem 3rem; }
}

/* ── Text column ── */
.page-header-cnc-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.page-header-cnc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #0a9ab9;
}

.page-header-cnc-title {
  max-width: 18ch;
  text-wrap: balance;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.page-header-cnc-accent {
  color: #0a9ab9;
}

.page-header-cnc-subtitle {
  max-width: 34rem;
  text-wrap: pretty;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── CTA ── */
.page-header-cnc-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.page-header-cnc-cta-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.page-header-cnc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #0a9ab9;
  padding: 0 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #060606;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-header-cnc-cta-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(10,154,185,0.4);
}

/* ── Media ── */
.page-header-cnc-media {
  flex: 1;
  min-width: 0;
}

.page-header-cnc-media img,
.page-header-cnc-media iframe {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.page-header-cnc-media iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}
/* ── Video embed ── */
.page-header-cnc-video {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.page-header-cnc-video::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.page-header-cnc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .phc-fade-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .phc-flow,
  .phc-ring {
    animation: none !important;
    stroke-dasharray: none !important;
  }
}