@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.arch-map {
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f1f1f;
  background: radial-gradient(1150px 560px at 8% -16%, #ffe0e0 0%, transparent 62%),
    radial-gradient(900px 520px at 92% 2%, #ffd7dc 0%, transparent 58%), #f8eeee;
}

.arch-map *,
.arch-map *::before,
.arch-map *::after {
  box-sizing: border-box;
}

.arch-map__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.arch-map__header {
  text-align: center;
  margin-bottom: 20px;
}

.arch-map__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 12;
}

.arch-map__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5f6369;
  position: relative;
  z-index: 12;
}

.arch-map__top-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.arch-map__link-btn {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(185, 28, 28, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #9f1c1c;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.arch-map__link-btn--primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border-color: transparent;
}

.arch-map__marketing-stage {
  border-radius: 26px;
  padding: 16px 16px 18px;
  background: linear-gradient(160deg, rgba(255, 234, 234, 0.84), rgba(255, 245, 245, 0.7));
  border: 1px solid rgba(185, 28, 28, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.64), 0 20px 46px rgba(121, 33, 33, 0.12);
}

.arch-map__section-kicker {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b91c1c;
  position: relative;
  z-index: 12;
}

.arch-map__flow-layout {
  position: relative;
  border-radius: 20px;
  padding: 14px 12px 12px;
  border: 1px solid rgba(185, 28, 28, 0.1);
  background: rgba(255, 248, 248, 0.68);
  overflow: hidden;
  min-height: 620px;
}

.arch-map__flow-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.arch-map__flow-line {
  fill: none;
  stroke: url(#arch-flow-grad);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.35));
}

.arch-map__flow-line--soc {
  stroke-width: 2;
  stroke-dasharray: 7 6;
}

.arch-map__flow-line--arrow {
  marker-end: url(#arch-flow-arrow);
  marker-start: url(#arch-flow-arrow-return);
}

.arch-map__flow-line--splunk-head {
  marker-start: url(#arch-flow-arrow-return-splunk);
}

.arch-map__flow-line--red-bidir {
  marker-start: url(#arch-flow-arrow-return-red);
  marker-end: url(#arch-flow-arrow-end-red);
  stroke-width: 2.4;
}

.arch-map__flow-line--enterprise-forward {
  marker-start: none;
  marker-end: url(#arch-flow-arrow);
}

.arch-map__flow-line--enterprise-return {
  marker-start: none;
  marker-end: url(#arch-flow-arrow-return);
}

.arch-map__flow-dot {
  fill: #fff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 6px rgba(220, 38, 38, 0.6));
}

.arch-map__flow-dot--return {
  fill: rgba(254, 202, 202, 0.92);
  stroke: rgba(220, 38, 38, 0.48);
  stroke-width: 0.9;
  filter: drop-shadow(0 0 5px rgba(254, 226, 226, 0.95)) drop-shadow(0 0 6px rgba(220, 38, 38, 0.36));
  opacity: 0.92;
}

.arch-map__product-grid {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.arch-map__cloud-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: none;
  text-align: center;
  cursor: help;
  min-height: 178px;
  padding: 18px 10px 20px;
  border-radius: 999px;
  background: transparent;
}

.arch-map__cloud-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  width: min(280px, 86vw);
  padding: 9px 10px;
  border-radius: 11px;
  border: 1px solid rgba(185, 28, 28, 0.24);
  background: rgba(255, 252, 252, 0.98);
  box-shadow: 0 12px 24px rgba(89, 35, 35, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
  z-index: 20;
  text-align: left;
}

.arch-map__cloud-card:hover .arch-map__cloud-tooltip,
.arch-map__cloud-card:focus-visible .arch-map__cloud-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.arch-map__cloud-tooltip-title {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9f1c1c;
}

.arch-map__cloud-tooltip-summary {
  margin: 0 0 6px;
  font-size: 0.7rem;
  line-height: 1.35;
  color: #4b5563;
}

.arch-map__cloud-tooltip-summary--highlight {
  font-weight: 700;
  color: #111827;
}

.arch-map__cloud-tooltip-sandbox {
  margin: 0 0 6px;
  font-size: 0.68rem;
  line-height: 1.34;
  color: #374151;
}

.arch-map__vision-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  color: #111827;
  vertical-align: -1px;
  animation: vision-pulse 1.6s ease-in-out infinite;
}

.arch-map__cloud-tooltip ul {
  margin: 0;
  padding-left: 15px;
  font-size: 0.69rem;
  line-height: 1.32;
  color: #4b5563;
}

.arch-map__cloud-tooltip li + li {
  margin-top: 2px;
}

.arch-map__cloud-badges {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  top: auto;
  left: auto;
  transform: translateX(-14px);
  width: auto;
  height: auto;
  margin: 0 0 6px;
  padding-left: 40px;
  pointer-events: none;
  z-index: 3;
}

.arch-map__cloud-badge {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 211, 232, 0.82);
  box-shadow: 0 6px 14px rgba(109, 68, 165, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f46c8;
}

.arch-map__cloud-badge i {
  font-size: 13px;
}

.arch-map__cloud-badge:nth-child(1) {
  left: auto;
  top: auto;
}

.arch-map__cloud-badge:nth-child(2) {
  left: auto;
  top: auto;
}

.arch-map__cloud-badge:nth-child(3) {
  left: auto;
  top: auto;
}

.arch-map__cloud-badge:nth-child(4) {
  left: auto;
  top: auto;
}

.arch-map__cloud-badge--android {
  color: #3ddc84;
}

.arch-map__cloud-badge--ios,
.arch-map__cloud-badge--mac {
  color: #374151;
}

.arch-map__cloud-badge--windows {
  color: #3b82f6;
}

.arch-map__cloud-badge--chrome {
  color: #db4437;
}

.arch-map__cloud-badge--safari {
  color: #0fb5ff;
}

.arch-map__cloud-badge--firefox {
  color: #ea580c;
}

.arch-map__cloud-badge--edge {
  color: #2563eb;
}

.arch-map__cloud-badge--slack {
  color: #7c3aed;
}

.arch-map__cloud-badge--whatsapp {
  color: #16a34a;
}

.arch-map__cloud-badge--telegram {
  color: #0284c7;
}

.arch-map__cloud-badge--mail {
  color: #b91c1c;
}

.arch-map__cloud-badge--zoom {
  color: #2563eb;
}

.arch-map__cloud-badge--msg {
  color: #7c3aed;
}

.arch-map__cloud-badge--api {
  color: #7c3aed;
}

.arch-map__cloud-badge--forensic {
  color: #0284c7;
}

.arch-map__cloud-badge--deep-analysis {
  color: #9333ea;
}

.arch-map__cloud-badge--linkedin {
  color: #0a66c2;
}

.arch-map__cloud-badge--teams {
  color: #6264a7;
}

.arch-map__cloud-badge--messenger {
  color: #0084ff;
}

.arch-map__cloud-badge--signal {
  color: #3a76f0;
}

.arch-map__cloud-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(209, 166, 175, 0.42);
  box-shadow: 0 10px 26px rgba(127, 36, 36, 0.1);
  clip-path: path('M24 118 Q6 118 6 88 Q6 69 25 63 Q33 35 64 30 Q84 7 112 23 Q142 16 160 39 Q188 42 188 72 Q188 118 162 118 Z');
  transform: scaleX(1.08) scaleY(1.34);
  transform-origin: center;
}

.arch-map__cloud-card--active::before {
  border-color: rgba(220, 38, 38, 0.42);
  box-shadow: 0 0 0 2px rgba(254, 202, 202, 0.85), 0 16px 30px rgba(185, 28, 28, 0.16);
}

.arch-map__cloud-title,
.arch-map__cloud-platforms,
.arch-map__cloud-icons {
  position: relative;
  z-index: 1;
  transform: translateX(-14px);
}

.arch-map__cloud-title {
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: #292841;
  max-width: 190px;
  min-height: 2.5em;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  padding-left: 40px;
  text-wrap: balance;
}

.arch-map__cloud-platforms {
  margin-bottom: 9px;
  font-size: 0.64rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.2;
  min-height: 1.2em;
  white-space: nowrap;
  text-align: left;
  padding-left: 40px;
}

.arch-map__cloud-icons {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
  padding-bottom: 2px;
  padding-left: 40px;
}

.arch-map__cloud-branches {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin-top: 4px;
  padding-left: 40px;
  transform: translateX(-14px);
}

.arch-map__cloud-branch-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.61rem;
  font-weight: 600;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 211, 232, 0.82);
}

.arch-map__cloud-branch-chip i {
  font-size: 0.62rem;
  color: #6b7280;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] {
  min-height: 190px;
  padding-top: 16px;
  padding-bottom: 10px;
  transform: none;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] .arch-map__cloud-badges {
  justify-content: flex-start;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] .arch-map__cloud-title {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding-left: 40px;
  max-width: 170px;
  margin-top: 0;
  min-height: auto;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] .arch-map__cloud-platforms {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding-left: 40px;
  margin-bottom: 0;
  margin-top: 0;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] .arch-map__cloud-branches {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: translateX(-14px);
  padding-left: 40px;
  gap: 4px;
  z-index: 2;
}

.arch-map__cloud-card[data-product-id='phishiq-api'] .arch-map__cloud-branch-chip {
  font-size: 0.59rem;
  padding: 2px 7px;
  max-width: 140px;
}


.arch-map__icon-chip {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(206, 201, 224, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f46c8;
}

.arch-map__icon-chip--android {
  color: #3ddc84;
}

.arch-map__icon-chip--ios,
.arch-map__icon-chip--mac {
  color: #374151;
}

.arch-map__icon-chip--windows {
  color: #3b82f6;
}

.arch-map__icon-chip--chrome {
  color: #db4437;
}

.arch-map__icon-chip--safari {
  color: #0fb5ff;
}

.arch-map__icon-chip--firefox {
  color: #ff7139;
}

.arch-map__icon-chip--edge {
  color: #0aa8f0;
}

.arch-map__icon-chip--alert {
  color: #f97316;
}

.arch-map__icon-chip--brain {
  color: #8b5cf6;
}

.arch-map__icon-chip--shield {
  color: #0f766e;
}

.arch-map__engine-cylinder {
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(620px, 76%);
  min-height: 88px;
  border: 1px solid rgba(214, 98, 98, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 83, 83, 0.9), rgba(187, 34, 34, 0.88));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 14px 30px rgba(143, 23, 23, 0.26);
  text-align: center;
  padding: 13px 18px;
  cursor: help;
}

.arch-map__engine-cylinder > span {
  position: relative;
  z-index: 3;
}

.arch-map__engine-cylinder::before,
.arch-map__engine-cylinder::after {
  content: '';
  position: absolute;
  left: 3.5%;
  right: 3.5%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.arch-map__engine-cylinder::before {
  top: 6px;
}

.arch-map__engine-cylinder::after {
  bottom: 6px;
  opacity: 0.24;
}

.arch-map__engine-eyebrow {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 3px;
}

.arch-map__engine-label {
  display: block;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.1;
}

.arch-map__engine-note {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  opacity: 0.9;
}

.arch-map-engine-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 15, 15, 0.42);
  display: none;
  place-items: center;
  padding: 16px;
}

.arch-map-engine-modal {
  width: min(640px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(227, 205, 205, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 46px rgba(73, 29, 29, 0.26);
  padding: 18px 18px 16px;
}

.arch-map-engine-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.arch-map-engine-modal__head h2 {
  margin: 0;
  font-size: 1.02rem;
  color: #991b1b;
}

.arch-map-engine-modal__close {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(214, 205, 205, 0.95);
  background: #f4f4f5;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arch-map-engine-modal__intro {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #4b5563;
}

.arch-map-engine-modal__card {
  border-radius: 12px;
  border: 1px solid rgba(252, 165, 165, 0.65);
  background: rgba(255, 248, 248, 0.78);
  padding: 10px 12px;
}

.arch-map-engine-modal__card + .arch-map-engine-modal__card {
  margin-top: 10px;
}

.arch-map-engine-modal__card h3 {
  margin: 0 0 6px;
  font-size: 0.78rem;
  color: #991b1b;
}

.arch-map-engine-modal__card ul {
  margin: 0;
  padding-left: 17px;
  font-size: 0.77rem;
  line-height: 1.36;
  color: #374151;
}

.arch-map__link-packet {
  position: absolute;
  left: calc(50% - 11px);
  top: 232px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: link-to-engine 2.2s ease-in-out infinite;
}

.arch-map__link-packet i {
  font-size: 11px;
}

.arch-map__text-packet {
  position: absolute;
  left: calc(50% + 16px);
  top: 224px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: #7c2d12;
  border: 1px solid rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: text-to-engine 2.35s ease-in-out infinite;
  animation-delay: 0.45s;
}

.arch-map__text-packet > i {
  font-size: 10px;
}

.arch-map__text-packet-check {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.arch-map__text-packet-check i {
  font-size: 7px;
}

.arch-map__qr-packet {
  position: absolute;
  left: calc(50% - 40px);
  top: 226px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: qr-to-engine 2.5s ease-in-out infinite;
  animation-delay: 0.9s;
}

.arch-map__qr-packet i {
  font-size: 11px;
}

.arch-map__soc-panel {
  position: absolute;
  right: 18px;
  top: 400px;
  z-index: 2;
  width: min(320px, 35%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px dashed rgba(236, 201, 201, 0.95);
  box-shadow: 0 8px 18px rgba(130, 42, 42, 0.08);
  padding: 10px 10px 8px;
  cursor: help;
}

.arch-map__soc-title {
  margin: 0 0 2px;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7f1d1d;
  font-weight: 700;
}

.arch-map__soc-subtitle {
  margin: 0 0 8px;
  font-size: 0.68rem;
  color: #6b7280;
  font-weight: 600;
}

.arch-map__soc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.arch-map__soc-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(236, 201, 201, 0.8);
  padding: 10px 11px;
  box-shadow: 0 8px 18px rgba(130, 42, 42, 0.08);
}

.arch-map__soc-card h3 {
  margin: 0 0 3px;
  color: #9f1c1c;
  font-size: 0.84rem;
  position: relative;
  z-index: 2;
}

.arch-map__soc-card p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4b5563;
  position: relative;
  z-index: 2;
}

.arch-map__soc-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 10px);
  width: min(340px, 88vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(185, 28, 28, 0.24);
  background: rgba(255, 252, 252, 0.98);
  box-shadow: 0 14px 28px rgba(89, 35, 35, 0.18);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
  z-index: 10;
}

.arch-map__soc-tooltip-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: #7f1d1d;
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arch-map__soc-tooltip::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 100%;
  border-width: 7px 6px 0;
  border-style: solid;
  border-color: rgba(255, 252, 252, 0.98) transparent transparent;
}

.arch-map__soc-panel:hover .arch-map__soc-tooltip,
.arch-map__soc-panel:focus-within .arch-map__soc-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.arch-map__soc-panel--tooltip-closed .arch-map__soc-tooltip {
  opacity: 0 !important;
  transform: translateY(4px) !important;
  pointer-events: none !important;
}

.arch-map__soc-tooltip-title {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b91c1c;
}

.arch-map__soc-tooltip ul {
  margin: 0;
  padding-left: 16px;
  color: #4b5563;
  font-size: 0.74rem;
  line-height: 1.4;
}

.arch-map__soc-tooltip li + li {
  margin-top: 3px;
}

.arch-map__enterprise-panel {
  position: absolute;
  left: 18px;
  top: 398px;
  z-index: 2;
  width: min(320px, 35%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(236, 201, 201, 0.88);
  box-shadow: 0 8px 18px rgba(130, 42, 42, 0.08);
  padding: 10px;
}

.arch-map__enterprise-title {
  margin: 0 0 8px;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7f1d1d;
  font-weight: 700;
}

.arch-map__enterprise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.arch-map__enterprise-card {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  border: 1px solid rgba(236, 201, 201, 0.8);
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4b5563;
  position: relative;
  z-index: 2;
}

.arch-map__enterprise-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9f1c1c;
  background: rgba(254, 242, 242, 0.92);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.arch-map__details {
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(213, 183, 191, 0.5);
}

.arch-map__details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.arch-map__details-header h2 {
  margin: 0;
  font-size: 1.02rem;
  color: #7f1d1d;
}

.arch-map__mini-close {
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #f4f4f5;
  color: #52525b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arch-map__details-helper {
  margin: 8px 0 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #4b5563;
}

.arch-map__details-card {
  border-radius: 14px;
  border: 1px solid rgba(239, 194, 194, 0.88);
  background: linear-gradient(180deg, #fff8f8, #fff);
  padding: 12px 13px;
}

.arch-map__details-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #991b1b;
}

.arch-map__details-platforms {
  margin: 4px 0 6px;
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

.arch-map__details-summary {
  margin: 0 0 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #374151;
}

.arch-map__capability-carousel {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(185, 28, 28, 0.16);
  background: rgba(255, 252, 252, 0.88);
}

.arch-map__capability-topic-title {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #991b1b;
}

.arch-map__capability-topic-items {
  margin: 0;
  padding-left: 16px;
  min-height: 3.7em;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #4b5563;
}

.arch-map__capability-topic-items li + li {
  margin-top: 3px;
}

.arch-map__capability-dots {
  margin-top: 8px;
  display: flex;
  gap: 6px;
}

.arch-map__capability-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.arch-map__capability-dot--active {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
}

.arch-map__channel-strip {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.arch-map__channel-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 209, 228, 0.9);
  color: #6b7280;
}

.arch-map__channel-chip--slack {
  color: #7c3aed;
}

.arch-map__channel-chip--whatsapp {
  color: #16a34a;
}

.arch-map__channel-chip--telegram {
  color: #0284c7;
}

.arch-map__channel-chip--mail {
  color: #b91c1c;
}

.arch-map__channel-chip--zoom {
  color: #2563eb;
}

.arch-map-sms-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(19, 14, 14, 0.48);
  display: none;
  place-items: center;
  padding: 18px;
}

.arch-map-sms-modal {
  width: min(620px, 100%);
  position: relative;
  border-radius: 28px 28px 28px 12px;
  border: 1px solid rgba(186, 28, 28, 0.35);
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.96), rgba(185, 28, 28, 0.92));
  box-shadow: 0 24px 48px rgba(74, 26, 26, 0.24);
  overflow: hidden;
}

.arch-map-sms-modal::after {
  content: '';
  position: absolute;
  left: 26px;
  bottom: -18px;
  width: 34px;
  height: 26px;
  background: linear-gradient(145deg, rgba(208, 31, 31, 0.96), rgba(168, 24, 24, 0.92));
  border-left: 1px solid rgba(186, 28, 28, 0.35);
  border-bottom: 1px solid rgba(186, 28, 28, 0.35);
  clip-path: polygon(0 0, 100% 0, 18% 100%);
}

.arch-map-sms-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.arch-map-sms-modal__head h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff7f7;
}

.arch-map-sms-modal__close {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.arch-map-sms-chat {
  padding: 16px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
}

.arch-map-sms-bubble {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 16px;
  font-size: 0.79rem;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(88, 33, 33, 0.08);
  position: relative;
  z-index: 2;
}

.arch-map-sms-bubble__title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.01em;
}

.arch-map-sms-bubble p {
  margin: 0;
}

.arch-map-sms-bubble ul {
  margin: 0;
  padding-left: 16px;
}

.arch-map-sms-bubble li + li {
  margin-top: 4px;
}

.arch-map-sms-bubble--bot {
  justify-self: start;
  background: #ffffff;
  border: 1px solid rgba(221, 201, 201, 0.86);
  color: #3e3434;
  border-bottom-left-radius: 7px;
}

.arch-map-sms-bubble--user {
  justify-self: end;
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.96), rgba(185, 28, 28, 0.92));
  border: 1px solid rgba(166, 25, 25, 0.66);
  color: #fff;
  border-bottom-right-radius: 7px;
}

@keyframes link-to-engine {
  0% {
    transform: translateY(-14px) scale(0.9);
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(58px) scale(1.02);
    opacity: 0.95;
  }
}

@keyframes text-to-engine {
  0% {
    transform: translateY(-18px) scale(0.9);
    opacity: 0.18;
  }
  30% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(62px) scale(1.02);
    opacity: 0.9;
  }
}

@keyframes qr-to-engine {
  0% {
    transform: translateY(-20px) scale(0.88);
    opacity: 0.12;
  }
  35% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(64px) scale(1.02);
    opacity: 0.88;
  }
}

@keyframes vision-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}


