/* =========================================================
   INARC DESIGN PROCESS
   FROM BLUEPRINT TO REALITY
========================================================= */

.inarc-process-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at 12% 45%, rgba(218, 123, 35, 0.18), transparent 34%),
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.04), transparent 30%), #545454;
  color: #ffffff;
}

.inarc-process-section * {
  box-sizing: border-box;
}

.inarc-process-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 35%, rgba(0, 0, 0, 0.2));
}

.inarc-process-container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HERO
========================================================= */

.inarc-process-hero {
  position: relative;
  display: grid;
  /* grid-template-columns: 420px minmax(0, 1fr); */
  align-items: center;
  /* min-height: 390px; */
  margin-bottom: 35px;
}

/* =========================================================
   INARA CHARACTER
========================================================= */

.inarc-process-character {
  position: relative;
  align-self: stretch;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.inarc-character-image-wrap {
  position: relative;
  width: 390px;
  height: 390px;
  overflow: hidden;
  border-radius: 4px;
}

.inarc-character-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.inarc-character-glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15px;
  width: 270px;
  height: 120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(229, 138, 43, 0.2);
  filter: blur(45px);
}

/* =========================================================
   INARA SPEECH BUBBLE
========================================================= */

.inarc-character-bubble {
  position: absolute;
  z-index: 5;
  top: -2px;
  right: -82px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 190px;
  padding: 17px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #222222;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.inarc-character-bubble strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.inarc-character-bubble span {
  color: #555555;
  font-size: 11px;
  line-height: 1.4;
}

.inarc-bubble-tail {
  position: absolute;
  left: 28px;
  bottom: -15px;
  width: 0;
  height: 0;
  border-top: 17px solid rgba(255, 255, 255, 0.96);
  border-right: 17px solid transparent;
}

/* =========================================================
   INTRO CONTENT
========================================================= */

.inarc-process-intro {
  position: relative;
  z-index: 3;
  padding: 10px 30px 30px 35px;
  text-align: center;
}

.inarc-process-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #e58a2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.inarc-process-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.03;
}

.inarc-process-subtitle {
  margin: 20px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.5;
}

.inarc-process-intro-copy {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   BRAND MESSAGE
========================================================= */

.inarc-process-brand-message {
  position: absolute;
  top: 0px;
  right: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.inarc-process-brand-message i {
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 14px;
  background: #e58a2b;
}

/* =========================================================
   FIVE PHASE TIMELINE
========================================================= */

.inarc-phase-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1050px;
  margin: 0 auto;
}

.inarc-phase-timeline::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35) 0,
    rgba(255, 255, 255, 0.35) 3px,
    transparent 3px,
    transparent 7px
  );
}

.inarc-phase-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 12px 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.inarc-phase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #171717;
  color: rgba(255, 255, 255, 0.65);
  font-size: 24px;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.inarc-phase-item:hover .inarc-phase-icon {
  border-color: rgba(229, 138, 43, 0.7);
  color: #e58a2b;
}

.inarc-phase-item.is-active .inarc-phase-icon {
  border: 2px solid #e58a2b;
  background: #25201a;
  color: #e58a2b;
  box-shadow: 0 0 0 7px rgba(229, 138, 43, 0.06);
  transform: scale(1.04);
}

.inarc-phase-number {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.inarc-phase-item.is-active .inarc-phase-number {
  color: #e58a2b;
}

.inarc-phase-title {
  min-height: 40px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.inarc-phase-item.is-active .inarc-phase-title {
  color: #e58a2b;
}

.inarc-phase-steps {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

/* =========================================================
   ACTIVE PROCESS PANEL
========================================================= */

.inarc-active-process-panel {
  position: relative;
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 35px;
  margin-top: 20px;
  padding: 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   ACTIVE INARA
========================================================= */

.inarc-active-character {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inarc-active-character-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(229, 138, 43, 0.55);
  border-radius: 50%;
}

.inarc-active-character-ring::before,
.inarc-active-character-ring::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(229, 138, 43, 0.22);
  border-radius: 50%;
}

.inarc-active-character-ring::before {
  width: 135px;
  height: 135px;
}

.inarc-active-character-ring::after {
  width: 155px;
  height: 155px;
}

.inarc-active-character-inner {
  width: 91px;
  height: 91px;
  overflow: hidden;
  border-radius: 50%;
  background: #242424;
}

.inarc-active-character-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =========================================================
   AI STATUS
========================================================= */

.inarc-ai-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.inarc-ai-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e58a2b;
  box-shadow: 0 0 0 4px rgba(229, 138, 43, 0.08);
}

/* =========================================================
   WAVEFORM
========================================================= */

.inarc-process-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 75px;
  height: 28px;
  margin-top: 8px;
}

.inarc-process-waveform span {
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: #e58a2b;
  opacity: 0.5;
}

.inarc-process-waveform.is-active span {
  animation: inarcProcessWave 0.8s ease-in-out infinite;
  opacity: 1;
}

.inarc-process-waveform.is-active span:nth-child(1) {
  animation-delay: -0.5s;
}

.inarc-process-waveform.is-active span:nth-child(2) {
  animation-delay: -0.35s;
}

.inarc-process-waveform.is-active span:nth-child(3) {
  animation-delay: -0.2s;
}

.inarc-process-waveform.is-active span:nth-child(4) {
  animation-delay: -0.1s;
}

.inarc-process-waveform.is-active span:nth-child(5) {
  animation-delay: -0.3s;
}

.inarc-process-waveform.is-active span:nth-child(6) {
  animation-delay: -0.45s;
}

.inarc-process-waveform.is-active span:nth-child(7) {
  animation-delay: -0.25s;
}

.inarc-process-waveform.is-active span:nth-child(8) {
  animation-delay: -0.15s;
}

.inarc-process-waveform.is-active span:nth-child(9) {
  animation-delay: -0.4s;
}

.inarc-process-waveform.is-active span:nth-child(10) {
  animation-delay: -0.25s;
}

.inarc-process-waveform.is-active span:nth-child(11) {
  animation-delay: -0.05s;
}

@keyframes inarcProcessWave {
  0%,
  100% {
    height: 6px;
  }

  50% {
    height: 23px;
  }
}

/* =========================================================
   ACTIVE CONTENT
========================================================= */

.inarc-active-process-content {
  min-width: 0;
}

.inarc-active-process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 27px;
}

.inarc-active-process-meta span:first-child {
  color: #e58a2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.inarc-active-process-meta span:last-child {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.inarc-active-step-label {
  display: block;
  margin-bottom: 10px;
  color: #e58a2b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.inarc-active-process-content h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.inarc-active-process-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CONTROLS
========================================================= */

.inarc-process-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.inarc-process-button,
.inarc-listen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.inarc-process-button {
  min-width: 115px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.inarc-process-button:hover:not(:disabled) {
  border-color: #e58a2b;
  color: #ffffff;
  transform: translateY(-2px);
}

.inarc-process-button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.inarc-process-button-next {
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.inarc-process-button-next:hover:not(:disabled) {
  border-color: #e58a2b;
  color: #ffffff;
  transform: translateY(-2px);
}

.inarc-listen-button {
  min-width: 135px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: #ffffff;
}

.inarc-listen-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0a23b;
  color: #171717;
  font-size: 18px;
}

.inarc-listen-button:hover {
  transform: translateY(-2px);
}

/* =========================================================
   QUOTE
========================================================= */

.inarc-process-quote {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.inarc-quote-mark {
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.7;
}

.inarc-process-quote p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.67);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.inarc-quote-author {
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  text-align: right;
}

.inarc-quote-role {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-align: right;
}

/* =========================================================
   ALL 14 STEPS
========================================================= */

.inarc-all-steps-panel {
  margin-top: 14px;
  padding: 23px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.inarc-all-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.inarc-all-steps-header h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: inherit;
  font-size: 23px;
  font-weight: 500;
}

.inarc-all-steps-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.inarc-timeline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #e58a2b;
  font-size: 11px;
  cursor: pointer;
}

/* =========================================================
   STEP TRACK
========================================================= */

.inarc-step-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-top: 25px;
  padding: 0 10px;
}

.inarc-step-track::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 18px;
  right: 20px;
  left: 20px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0,
    rgba(255, 255, 255, 0.3) 3px,
    transparent 3px,
    transparent 7px
  );
}

/* JS generated step */

.inarc-process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
}

.inarc-process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: #171717;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.inarc-process-step:hover .inarc-process-step-number {
  border-color: #e58a2b;
  color: #e58a2b;
}

.inarc-process-step.is-active .inarc-process-step-number {
  border-color: #f0a23b;
  background: #f0a23b;
  color: #171717;
  transform: scale(1.08);
}

.inarc-process-step h4,
.inarc-process-step p {
  display: none;
}

/* =========================================================
   PROJECT LINK
========================================================= */

.inarc-process-project-link {
  margin-top: 25px;
  text-align: center;
}

.inarc-process-project-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.inarc-process-project-link a:hover {
  color: #e58a2b;
}

/* =========================================================
   FOCUS
========================================================= */

.inarc-phase-item:focus-visible,
.inarc-process-step:focus-visible,
.inarc-process-button:focus-visible,
.inarc-listen-button:focus-visible,
.inarc-timeline-toggle:focus-visible {
  outline: 2px solid #e58a2b;
  outline-offset: 4px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .inarc-process-hero {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .inarc-character-image-wrap {
    width: 330px;
    height: 360px;
  }

  .inarc-process-intro {
    padding-left: 15px;
  }

  .inarc-process-brand-message {
    display: none;
  }

  .inarc-active-process-panel {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .inarc-process-quote {
    display: none;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .inarc-process-section {
    padding: 85px 0 75px;
  }

  .inarc-process-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .inarc-process-character {
    min-height: 350px;
    margin-bottom: 15px;
  }

  .inarc-character-image-wrap {
    width: 330px;
    height: 350px;
  }

  .inarc-character-bubble {
    top: 25px;
    right: calc(50% - 180px);
  }

  .inarc-process-intro {
    padding: 0 20px 35px;
  }

  .inarc-process-intro h2 {
    font-size: 52px;
  }

  .inarc-process-intro-copy {
    max-width: 650px;
  }

  .inarc-phase-timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .inarc-phase-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .inarc-phase-icon {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .inarc-phase-title {
    font-size: 11px;
  }

  .inarc-active-process-panel {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 25px;
    padding: 30px 22px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .inarc-process-section {
    padding: 70px 0 65px;
  }

  .inarc-process-hero {
    margin-bottom: 25px;
  }

  .inarc-process-character {
    min-height: 320px;
  }

  .inarc-character-image-wrap {
    width: 300px;
    height: 320px;
  }

  .inarc-character-bubble {
    top: 18px;
    right: 8%;
    width: 165px;
    padding: 14px 16px;
  }

  .inarc-character-bubble strong {
    font-size: 12px;
  }

  .inarc-character-bubble span {
    font-size: 10px;
  }

  .inarc-process-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .inarc-process-intro h2 {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .inarc-process-subtitle {
    font-size: 15px;
  }

  .inarc-process-intro-copy {
    font-size: 13px;
  }

  /* phase navigation becomes horizontal */

  .inarc-phase-timeline {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .inarc-phase-timeline::-webkit-scrollbar {
    display: none;
  }

  .inarc-phase-timeline::before {
    top: 29px;
    right: 40px;
    left: 40px;
    width: 700px;
  }

  .inarc-phase-item {
    flex: 0 0 145px;
    padding: 0 8px 20px;
  }

  .inarc-phase-icon {
    width: 58px;
    height: 58px;
  }

  /* active panel */

  .inarc-active-process-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 15px;
    padding: 35px 20px;
  }

  .inarc-active-character {
    order: 1;
  }

  .inarc-active-process-content {
    order: 2;
  }

  .inarc-process-quote {
    display: flex;
    order: 3;
    min-height: 145px;
  }

  .inarc-active-character-ring {
    width: 100px;
    height: 100px;
  }

  .inarc-active-character-ring::before {
    width: 120px;
    height: 120px;
  }

  .inarc-active-character-ring::after {
    width: 140px;
    height: 140px;
  }

  .inarc-active-character-inner {
    width: 78px;
    height: 78px;
  }

  .inarc-active-process-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
  }

  .inarc-active-process-content h3 {
    font-size: 31px;
  }

  .inarc-active-process-content > p {
    font-size: 13px;
  }

  /* controls */

  .inarc-process-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .inarc-listen-button {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .inarc-process-button {
    width: 100%;
  }

  /* steps */

  .inarc-all-steps-panel {
    padding: 22px 16px 25px;
  }

  .inarc-all-steps-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .inarc-timeline-toggle {
    display: none;
  }

  .inarc-step-track {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 5px 10px;
    scrollbar-width: none;
  }

  .inarc-step-track::-webkit-scrollbar {
    display: none;
  }

  .inarc-step-track::before {
    right: 20px;
    left: 20px;
    width: 900px;
  }

  .inarc-process-step {
    flex: 0 0 62px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .inarc-process-intro h2 {
    font-size: 34px;
  }

  .inarc-character-image-wrap {
    width: 270px;
    height: 300px;
  }

  .inarc-character-bubble {
    right: 3%;
  }

  .inarc-process-subtitle {
    font-size: 14px;
  }

  .inarc-active-process-content h3 {
    font-size: 28px;
  }

  .inarc-process-quote p {
    font-size: 16px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .inarc-process-waveform.is-active span {
    animation: none;
  }

  .inarc-phase-icon,
  .inarc-process-step-number,
  .inarc-process-button,
  .inarc-listen-button {
    transition: none;
  }
}

/* =========================================================
   SPEAKING STEP HIGHLIGHT
========================================================= */

.inarc-process-step.is-speaking .inarc-process-step-number {
  border-color: #ffffff;
  background: #ffffff;
  color: #171717;
  box-shadow:
    0 0 0 5px rgba(229, 138, 43, 0.18),
    0 0 25px rgba(229, 138, 43, 0.35);
  transform: scale(1.12);
}

.inarc-process-step.is-speaking::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: #e58a2b;
  animation: inarcSpeakingPulse 1s ease-in-out infinite;
}

.inarc-process-step.is-speaking h4 {
  display: block;
  max-width: 150px;
  margin: 8px auto 0;
  color: #e58a2b;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

@keyframes inarcSpeakingPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* =========================================================
   CURRENT MAIN TITLE WHILE SPEAKING
========================================================= */

.inarc-active-process-content.is-speaking .inarc-active-step-label {
  animation: inarcSpeakingLabel 1.5s ease-in-out infinite;
}

@keyframes inarcSpeakingLabel {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inarc-process-step.is-speaking::after,
  .inarc-active-process-content.is-speaking .inarc-active-step-label {
    animation: none;
  }
}
#inarc-process-speak {
  min-width: 110px;

  border-color: #e58a2b;
  background: #f0a23b;
  color: #171717;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  border-radius: 30px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

#inarc-process-speak:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

#inarc-process-speak.is-playing {
  border-color: #e58a2b;
  color: #fff;
}

#inarc-process-speak i {
  font-size: 18px;
  line-height: 1;
}

#inarc-speak-label {
  min-width: 42px;
  text-align: left;
}

/* =========================================================
   PROCESS PHASE HIERARCHY
   Current phase = visible/highlighted
   Current step = strongest highlight
   Other phases = muted
========================================================= */

.inarc-process-step {
  opacity: 0.34;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.inarc-process-step .inarc-process-step-title {
  display: block;
  max-width: 150px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.inarc-process-step.is-phase-active {
  opacity: 1;
}

.inarc-process-step.is-phase-active .inarc-process-step-number {
  border-color: rgba(229, 138, 43, 0.62);
  color: rgba(255, 255, 255, 0.72);
}

.inarc-process-step.is-phase-active .inarc-process-step-title {
  color: rgba(255, 255, 255, 0.72);
}

.inarc-process-step.is-active {
  opacity: 1;
}

.inarc-process-step.is-active .inarc-process-step-title {
  color: #e58a2b;
}

.inarc-process-step.is-speaking .inarc-process-step-title {
  color: #e58a2b;
}
.mh-200 {
  min-height: 200px;
}

#inarc-process-speak.is-phase-active {
  color: #41414141;
}
