@charset "UTF-8";
/*==============================================================
  NeuraEnterprise — practice layer
  ---------------------------------------------------------------
  Loaded only by /enterprise/ pages, after neura.css.
  Adds the Decision Spine motif and Enterprise-specific editorial
  layouts without changing the group system or the parallel
  NeuraMSP implementation.
==============================================================*/

/*--------------------------------------------------------------
  01 · Enterprise hero and Decision Spine
--------------------------------------------------------------*/
.enterprise-hero {
  padding-top: clamp(56px, 7vw, 96px);
}

.enterprise-hero .hero__inner {
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
}

.enterprise-hero .hero__copy {
  min-width: 0;
}

.enterprise-hero .hero__copy > p:not(.eyebrow) {
  max-width: 60ch;
}

.enterprise-hero .hero__proof {
  gap: 9px 16px;
  margin-top: 34px;
}

.enterprise-hero .hero__proof li::before {
  background: var(--accent);
}

.enterprise-hero--detail h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.decision-map {
  position: relative;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
  background: rgba(10, 13, 18, 0.76);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}

.decision-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.decision-map svg {
  position: relative;
  width: 100%;
  overflow: visible;
}

.decision-map__surface {
  fill: rgba(255, 255, 255, 0.025);
  stroke: rgba(255, 255, 255, 0.12);
}

.decision-map__surface--key {
  fill: rgba(155, 108, 255, 0.08);
  stroke: var(--accent);
}

.decision-map__line {
  fill: none;
  stroke: rgba(244, 247, 251, 0.32);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decision-map__line--feedback {
  stroke: rgba(244, 247, 251, 0.25);
  stroke-dasharray: 5 7;
}

.decision-map__signal {
  fill: none;
  stroke: var(--accent-bright);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 12 88;
  animation: enterprise-signal 8s linear infinite;
}

.decision-map__node {
  fill: var(--accent);
  stroke: #f4f7fb;
  stroke-width: 1.5;
}

.decision-map__node--neutral {
  fill: var(--surface-2);
  stroke: rgba(244, 247, 251, 0.65);
}

.decision-map__label {
  fill: #f4f7fb;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.decision-map__meta {
  fill: #a4afbd;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
}

.decision-map__index {
  fill: #b99aff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.decision-map__caption {
  position: relative;
  max-width: 52ch;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

@keyframes enterprise-signal {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1100px) {
  .enterprise-hero {
    padding-top: 48px;
  }

  .enterprise-hero .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .enterprise-hero .decision-map {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .enterprise-hero {
    padding-top: 38px;
  }

  .enterprise-hero .hero__inner {
    gap: 32px;
  }

  .decision-map {
    padding: 10px;
  }

  .decision-map__caption {
    padding-inline: 4px;
  }
}

/*--------------------------------------------------------------
  03 · Editorial layout and service territories
--------------------------------------------------------------*/
.section-head--wide {
  max-width: 48rem;
}

.section-head--wide p {
  max-width: 68ch;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.editorial-split__aside {
  position: relative;
}

@media (min-width: 901px) {
  .editorial-split__aside--sticky {
    position: sticky;
    top: 168px;
  }
}

.enterprise-pullout {
  margin: 30px 0 0;
  padding: 24px 26px 24px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.enterprise-pullout p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.014em;
}

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

.territory {
  position: relative;
  min-width: 0;
  padding-top: 34px;
  overflow: hidden;
}

.territory::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.72;
}

.territory__index {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.territory .signals {
  margin-top: 18px;
  margin-bottom: 22px;
}

.territory .link-arrow {
  color: var(--accent-bright);
}

.territory .link-arrow:hover {
  color: var(--text);
}

.ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.ai-panel__principles {
  display: grid;
  gap: 14px;
}

.ai-principle {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ai-principle h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
}

.ai-principle p {
  margin: 0;
  font-size: 0.94rem;
}

.experience-facts {
  display: grid;
  gap: 0;
  margin-top: 34px;
  list-style: none;
  border-block: 1px solid var(--border);
}

.experience-facts li {
  padding: 17px 0;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.experience-facts li:first-child {
  border-top: 0;
}

/*--------------------------------------------------------------
  04 · Working method and entry points
--------------------------------------------------------------*/
.enterprise-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.enterprise-step {
  position: relative;
  min-width: 0;
  padding: 38px clamp(20px, 2.8vw, 34px) 26px 0;
  border-top: 1px solid var(--border-strong);
}

.enterprise-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.enterprise-step:last-child::before {
  content: "↺";
  position: absolute;
  top: -17px;
  left: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--accent-bright);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.enterprise-step__index {
  display: block;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.enterprise-step h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.enterprise-step p {
  margin: 0;
  font-size: 0.94rem;
}

.feedback-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 60ch;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.feedback-note::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
  flex: 0 0 auto;
}

.entry-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 64px);
  list-style: none;
  border-top: 1px solid var(--border);
}

.entry-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 20px;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--border);
}

.entry-point__index {
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.9;
}

.entry-point h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.entry-point p {
  margin: 0;
  font-size: 0.95rem;
}

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

.boundary-card {
  position: relative;
  padding-top: 32px;
}

.boundary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 26px;
  height: 2px;
  background: var(--practice-signal, var(--accent));
}

.boundary-card .link-arrow {
  color: var(--practice-signal, var(--accent-bright));
}

/*--------------------------------------------------------------
  05 · Detail-page structures
--------------------------------------------------------------*/
.discipline-list,
.intervention-list {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.discipline,
.intervention {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(30px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
}

.discipline h3,
.intervention h3 {
  font-size: clamp(1.2rem, 2vw, 1.48rem);
}

.discipline__body > p,
.intervention__body > p {
  max-width: 66ch;
}

.plain-list {
  display: grid;
  gap: 11px;
  margin-top: 20px;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 64px);
  list-style: none;
  border-top: 1px solid var(--border);
}

.deliverables li {
  position: relative;
  padding: 22px 0 22px 28px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.deliverables li::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--accent-bright);
  transform: rotate(45deg);
}

.trigger-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.trigger-list li {
  min-width: 0;
  padding: 20px 22px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.recovery-steps {
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: recovery;
  border-left: 1px solid var(--border-strong);
}

.recovery-step {
  position: relative;
  padding: 0 0 38px clamp(34px, 5vw, 64px);
  counter-increment: recovery;
}

.recovery-step:last-child {
  padding-bottom: 0;
}

.recovery-step::before {
  content: counter(recovery, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: -18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--accent-bright);
  background: var(--bg-raised);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
}

.recovery-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.recovery-step p {
  max-width: 66ch;
  margin: 0;
}

.lateral-link {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/*--------------------------------------------------------------
  06 · Responsive and reduced motion
--------------------------------------------------------------*/
@media (max-width: 900px) {
  .editorial-split,
  .ai-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .territories,
  .boundary-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .enterprise-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .enterprise-step {
    padding: 0 0 30px 34px;
    border-top: 0;
    border-left: 1px solid var(--border-strong);
  }

  .enterprise-step::before,
  .enterprise-step:last-child::before {
    top: 4px;
    left: -5px;
  }

  .enterprise-step:last-child::before {
    left: -15px;
  }

  .enterprise-step__index {
    padding-top: 2px;
  }

  .discipline,
  .intervention {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .entry-points,
  .deliverables,
  .trigger-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .entry-point:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .boundary-card::before {
    left: 22px;
  }
}

@media (max-width: 480px) {
  .enterprise-hero .hero__proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-point {
    grid-template-columns: minmax(0, 1fr);
  }

  .entry-point__index {
    line-height: 1;
  }

  .discipline,
  .intervention {
    padding-block: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .decision-map__signal {
    animation: none;
    stroke-dasharray: none;
  }
}
