/* GE2studio: exact parent 1.10.23 rules, in dependency order.
 * Generated by work/performance133/build_bundles.py; do not edit. */

/* Source: assistant-voice-v1113.css */
/* GE2studio V1.10.13 — optional voice dictation for the controlled assistant.
 * Progressive enhancement only: unsupported browsers retain the existing
 * text input and submit button exactly as before.
 */

.ge2-assistant-query-control {
  position: relative;
  min-width: 0;
}

.ge2-assistant-query-control > input {
  width: 100%;
}

.ge2-assistant-input-row.has-voice {
  grid-template-columns: minmax(0, 1fr) 46px;
}

.ge2-assistant-input-row.has-voice .ge2-assistant-query-control > input {
  padding-right: 53px;
}

.ge2-assistant-input-row .ge2-assistant-voice {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--orange-bright, #dd642c);
  border: 1px solid rgba(221, 100, 44, .42);
  border-radius: 11px;
  background: rgba(13, 14, 15, .88);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

.ge2-assistant-input-row .ge2-assistant-voice:hover {
  color: #fffaf4;
  border-color: rgba(221, 100, 44, .72);
  background: rgba(185, 74, 27, .26);
  transform: translateY(-50%);
}

.ge2-assistant-input-row .ge2-assistant-voice:focus-visible {
  outline: 2px solid var(--orange-bright, #dd642c);
  outline-offset: 2px;
}

.ge2-assistant-input-row .ge2-assistant-voice svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ge2-assistant-input-row .ge2-assistant-voice.is-listening {
  color: #fffaf4;
  border-color: rgba(221, 100, 44, .92);
  background: var(--orange, #b94a1b);
  box-shadow:
    0 0 0 5px rgba(221, 100, 44, .10),
    0 0 24px rgba(221, 100, 44, .24),
    inset 0 1px rgba(255, 255, 255, .08);
  animation: ge2-assistant-voice-listening 1.45s ease-in-out infinite;
}

.ge2-assistant-input-row.is-listening input {
  border-color: rgba(221, 100, 44, .58);
  box-shadow: 0 0 0 3px rgba(221, 100, 44, .08);
}

.ge2-assistant-input-row .ge2-assistant-submit:disabled {
  opacity: .46;
  cursor: wait;
  transform: none;
}

.ge2-assistant-voice-meta {
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 240, 232, .09);
  border-radius: 13px;
  background: rgba(244, 240, 232, .025);
}

.ge2-assistant-voice-status {
  margin: 0;
  color: rgba(244, 240, 232, .78);
  font-size: 9.5px;
  font-weight: 720;
  line-height: 1.45;
}

.ge2-assistant-voice-meta[data-tone="listening"] .ge2-assistant-voice-status {
  color: var(--orange-bright, #dd642c);
}

.ge2-assistant-voice-meta[data-tone="success"] .ge2-assistant-voice-status {
  color: #a9c8aa;
}

.ge2-assistant-voice-meta[data-tone="error"] .ge2-assistant-voice-status {
  color: #f0a47e;
}

.ge2-assistant-voice-note {
  margin: 5px 0 0;
  color: rgba(244, 240, 232, .40);
  font-size: 8.5px;
  line-height: 1.5;
}

@keyframes ge2-assistant-voice-listening {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(221, 100, 44, .08),
      0 0 18px rgba(221, 100, 44, .18),
      inset 0 1px rgba(255, 255, 255, .08);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(221, 100, 44, .13),
      0 0 28px rgba(221, 100, 44, .30),
      inset 0 1px rgba(255, 255, 255, .08);
  }
}

@media (max-width: 360px) {
  .ge2-assistant-input-row.has-voice {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 6px;
  }

  .ge2-assistant-input-row.has-voice .ge2-assistant-query-control > input {
    padding-right: 49px;
  }

  .ge2-assistant-input-row .ge2-assistant-voice {
    width: 38px;
    height: 38px;
  }

  .ge2-assistant-input-row .ge2-assistant-submit {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ge2-assistant-input-row .ge2-assistant-voice.is-listening {
    animation: none;
    box-shadow:
      0 0 0 5px rgba(221, 100, 44, .12),
      0 0 22px rgba(221, 100, 44, .22),
      inset 0 1px rgba(255, 255, 255, .08);
  }
}


/* Source: assistant-dual-launcher-v1114.css */
/* GE2studio V1.10.14 — Dual Launcher: Assistant + Micro.
 * Adds an optional voice shortcut beside the existing assistant launcher.
 * The microphone remains progressive enhancement and is hidden when the
 * browser does not expose Web Speech Recognition in a secure context.
 */

.ge2-contact-launchers {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: auto;
}

.ge2-contact-launchers .ge2-contact-launcher {
  flex: 0 0 auto;
}

/* Tooltips move above the two-button group so they never cover the neighbour. */
.ge2-contact-launchers .ge2-contact-launcher::after {
  right: 50%;
  top: auto;
  bottom: calc(100% + 10px);
  transform: translate(50%, 5px);
}

@media (hover: hover) and (pointer: fine) {
  .ge2-contact-launchers .ge2-contact-launcher:hover::after,
  .ge2-contact-launchers .ge2-contact-launcher:focus-visible::after {
    opacity: 1;
    transform: translate(50%, 0);
  }
}

/* Slightly quieter than the main assistant button at rest. */
.ge2-contact-launchers .ge2-voice-launcher {
  border-color: rgba(221, 100, 44, .38);
  background: rgba(18, 19, 20, .93);
  box-shadow:
    0 16px 44px rgba(16, 17, 18, .27),
    0 0 0 1px rgba(221, 100, 44, .045),
    0 0 20px rgba(221, 100, 44, .10),
    inset 0 1px rgba(255, 255, 255, .04);
  animation: ge2-voice-launcher-idle 6.4s ease-in-out infinite;
}

.ge2-contact-launchers .ge2-voice-launcher::before {
  inset: -5px;
  border-color: rgba(221, 100, 44, .35);
  box-shadow: 0 0 14px rgba(221, 100, 44, .11);
  opacity: .17;
  transform: scale(1.03);
  animation: none;
}

.ge2-contact-launchers .ge2-voice-launcher .ge2-contact-launcher-icon {
  color: rgba(221, 100, 44, .88);
  filter: drop-shadow(0 0 4px rgba(221, 100, 44, .20));
}

.ge2-contact-launchers .ge2-voice-launcher:hover,
.ge2-contact-launchers .ge2-voice-launcher:focus-visible {
  border-color: rgba(221, 100, 44, .82);
  background: rgba(12, 13, 14, .99);
  box-shadow:
    0 18px 52px rgba(16, 17, 18, .30),
    0 0 0 1px rgba(221, 100, 44, .12),
    0 0 30px rgba(221, 100, 44, .22),
    inset 0 1px rgba(255, 255, 255, .045);
  animation: none;
}

.ge2-contact-launchers .ge2-voice-launcher:hover::before,
.ge2-contact-launchers .ge2-voice-launcher:focus-visible::before {
  opacity: .45;
  transform: scale(1.08);
}

.ge2-contact-launchers .ge2-voice-launcher.is-listening {
  color: #fffaf4;
  border-color: rgba(221, 100, 44, .96);
  background: var(--orange, #b94a1b);
  box-shadow:
    0 18px 52px rgba(16, 17, 18, .31),
    0 0 0 5px rgba(221, 100, 44, .12),
    0 0 34px rgba(221, 100, 44, .32),
    inset 0 1px rgba(255, 255, 255, .10);
  animation: ge2-voice-launcher-listening 1.35s ease-in-out infinite;
}

.ge2-contact-launchers .ge2-voice-launcher.is-listening .ge2-contact-launcher-icon {
  color: #fffaf4;
  filter: drop-shadow(0 0 7px rgba(255, 250, 244, .28));
}

.ge2-contact-launchers .ge2-voice-launcher.is-listening::before {
  border-color: rgba(221, 100, 44, .78);
  opacity: .58;
  animation: ge2-voice-launcher-ring 1.35s ease-out infinite;
}

.ge2-contact-widget.is-open .ge2-contact-launchers {
  pointer-events: none;
}

@keyframes ge2-voice-launcher-idle {
  0%, 52%, 100% {
    border-color: rgba(221, 100, 44, .38);
    box-shadow:
      0 16px 44px rgba(16, 17, 18, .27),
      0 0 0 1px rgba(221, 100, 44, .045),
      0 0 20px rgba(221, 100, 44, .10),
      inset 0 1px rgba(255, 255, 255, .04);
  }
  10% {
    border-color: rgba(221, 100, 44, .58);
    box-shadow:
      0 16px 44px rgba(16, 17, 18, .27),
      0 0 0 1px rgba(221, 100, 44, .08),
      0 0 26px rgba(221, 100, 44, .16),
      inset 0 1px rgba(255, 255, 255, .04);
  }
}

@keyframes ge2-voice-launcher-listening {
  0%, 100% {
    box-shadow:
      0 18px 52px rgba(16, 17, 18, .31),
      0 0 0 4px rgba(221, 100, 44, .11),
      0 0 28px rgba(221, 100, 44, .27),
      inset 0 1px rgba(255, 255, 255, .10);
  }
  50% {
    box-shadow:
      0 18px 52px rgba(16, 17, 18, .31),
      0 0 0 7px rgba(221, 100, 44, .15),
      0 0 40px rgba(221, 100, 44, .39),
      inset 0 1px rgba(255, 255, 255, .10);
  }
}

@keyframes ge2-voice-launcher-ring {
  0% { opacity: .58; transform: scale(1.02); }
  70%, 100% { opacity: 0; transform: scale(1.22); }
}

@media (max-width: 620px) {
  .ge2-contact-launchers {
    gap: 8px;
  }
}

@media (max-width: 340px) {
  .ge2-contact-launchers {
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ge2-contact-launchers .ge2-voice-launcher,
  .ge2-contact-launchers .ge2-voice-launcher.is-listening,
  .ge2-contact-launchers .ge2-voice-launcher.is-listening::before {
    animation: none !important;
  }

  .ge2-contact-launchers .ge2-voice-launcher.is-listening {
    box-shadow:
      0 18px 52px rgba(16, 17, 18, .31),
      0 0 0 5px rgba(221, 100, 44, .13),
      0 0 32px rgba(221, 100, 44, .30),
      inset 0 1px rgba(255, 255, 255, .10);
  }
}


/* Source: assistant-mobile-centered-v1115.css */
/* GE2studio V1.10.15 — centered assistant dialog on smartphones.
 * Scope: mobile panel position only. Dual launcher, voice, content and desktop
 * behavior remain unchanged.
 */

@keyframes ge2-contact-enter-centered {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px)) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 620px) {
  .ge2-contact-panel {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(520px, calc(100vw - 24px));
    max-height: min(820px, calc(100dvh - 32px));
    padding: 23px max(18px, env(safe-area-inset-right)) max(22px, calc(18px + env(safe-area-inset-bottom))) max(18px, env(safe-area-inset-left));
    border: 1px solid rgba(244, 240, 232, .15);
    border-radius: 25px;
    transform: translate(-50%, -50%);
    animation: ge2-contact-enter-centered .24s cubic-bezier(.2, .75, .22, 1) both;
  }
}

@media (max-width: 360px) {
  .ge2-contact-panel {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 24px);
    padding-inline: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  @media (max-width: 620px) {
    .ge2-contact-panel {
      animation: none !important;
      transform: translate(-50%, -50%);
    }
  }
}


/* Source: copilot-navigation-v1116.css */
/* GE2studio V1.10.17 — hardening of the V1.10.16 public assistant/Copilot layer.
 * This lightweight stylesheet is loaded site-wide.
 */

.ge2-contact-scope {
  margin: 0 0 18px;
  padding: 15px 17px;
  border: 1px solid rgba(185, 74, 27, .20);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(185, 74, 27, .075), rgba(255, 255, 255, .025));
}

.ge2-contact-scope p {
  margin: 0;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.ge2-contact-scope small {
  display: block;
  margin-top: 7px;
  color: rgba(244, 240, 232, .55);
  font-size: 11px;
  line-height: 1.55;
}

/* Keep the child entry visually subordinate to the existing Intelligence hub. */
.wp-mobile-menu-subitem {
  position: relative;
  min-height: 44px !important;
  padding-left: 30px !important;
  color: rgba(244, 240, 232, .64) !important;
  font-size: 12px !important;
}

.wp-mobile-menu-subitem::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 8px;
  height: 1px;
  background: var(--orange-bright);
}

@media (max-width: 768px) {
  .ge2-contact-scope {
    padding: 14px;
  }
}

/* V1.10.17 — measured contrast corrections inside the global contact panel. */
.ge2-assistant-input-row input::placeholder,
.ge2-callback-form input::placeholder,
.ge2-assistant-note,
.ge2-assistant-voice-note,
.ge2-callback-form label > span small {
  color: rgba(244, 240, 232, .68);
}

