/* ================================================================
   CONNEX FACTORY + DECISION REPORT ARTIFACT
   Premium infrastructure aesthetic
   ================================================================ */

/* ============================
   HERO — new thesis-driven
   ============================ */
.thesis-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1400px 700px at 80% -10%, rgba(212, 165, 116, 0.06), transparent 60%),
    radial-gradient(ellipse 900px 500px at -10% 110%, rgba(36, 102, 219, 0.08), transparent 60%),
    linear-gradient(180deg, #0A1628 0%, #0B1A2E 100%);
}
.thesis-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 90%);
}

.thesis-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.thesis-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.thesis-hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.thesis-hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.thesis-hero__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.thesis-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.thesis-hero__meta .live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-soft 2s ease-in-out infinite;
}

.thesis-hero__body {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .thesis-hero__body { grid-template-columns: 1fr; gap: 56px; }
}

.thesis-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  max-width: 16ch;
}
.thesis-hero__h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.thesis-hero__sub {
  margin-top: 36px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
}

.thesis-hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.thesis-hero__panel {
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.04), transparent),
    rgba(10, 22, 40, 0.6);
  overflow: hidden;
}
.thesis-hero__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.thesis-hero__panel-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.thesis-hero__panel-row:last-child { border-bottom: none; }
.thesis-hero__panel-row .k {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.thesis-hero__panel-row .v {
  color: var(--text-primary);
}
.thesis-hero__panel-row .badge {
  font-size: 10px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================
   COMPARISON BLOCK — unified
   ============================ */
.comparison-block {
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.03), transparent 50%),
    rgba(10, 22, 40, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-rows: auto auto;
}

.cmp-row {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: stretch;
}
@media (max-width: 900px) {
  .cmp-row { grid-template-columns: 1fr; }
}

.cmp-row--metrics { border-bottom: 1px solid var(--border); }

.cmp-side {
  padding: 24px 28px;
  position: relative;
}
.cmp-side--before {
  background: linear-gradient(90deg, rgba(239, 174, 90, 0.05), transparent 70%);
}
.cmp-side--after {
  background: linear-gradient(90deg, transparent 30%, rgba(34, 197, 94, 0.04));
}

/* labels */
.cmp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cmp-side--before .cmp-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #EFAE5A;
  opacity: 0.75;
}
.cmp-side--after .cmp-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-soft 2s ease-in-out infinite;
}
.cmp-side__sublabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

/* metrics row */
.cmp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.cmp-metrics strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}
.cmp-metrics strong small {
  font-size: 0.5em;
  font-style: italic;
}
.cmp-side--before .cmp-metrics strong {
  color: #EFAE5A;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.55);
  text-decoration-thickness: 2px;
}
.cmp-side--before .cmp-metrics strong small {
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.55);
}
.cmp-side--after .cmp-metrics strong { color: var(--success); }

/* divider column */
.cmp-divider {
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.03));
  border-left: 1px solid rgba(212, 165, 116, 0.2);
  border-right: 1px solid rgba(212, 165, 116, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.cmp-divider--top { padding: 28px 0; }
.cmp-divider--mid { padding: 0; }
.cmp-divider__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cmp-divider--top .cmp-divider__label { display: none; }
.cmp-divider__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #1A1208;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15), 0 0 24px rgba(212, 165, 116, 0.3);
  flex-shrink: 0;
  z-index: 1;
}
.cmp-divider__arrow svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .cmp-divider {
    border-left: none; border-right: none;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding: 14px 0;
  }
  .cmp-divider__label { display: none; }
  .cmp-divider--mid { display: none; }
  .cmp-divider__arrow { transform: rotate(90deg); }
}

.metric-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.025), transparent),
    rgba(10, 22, 40, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 60px -30px rgba(0, 0, 0, 0.5);
}
@media (max-width: 900px) {
  .metric-strip { grid-template-columns: 1fr; }
}
.metric-strip__side {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 640px) {
  .metric-strip__side { grid-template-columns: 1fr; gap: 16px; }
}
.metric-strip__side--before {
  background:
    linear-gradient(90deg, rgba(239, 174, 90, 0.05), transparent 60%);
}
.metric-strip__side--after {
  background:
    linear-gradient(90deg, transparent 40%, rgba(34, 197, 94, 0.04));
}
.metric-strip__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.metric-strip__side--before .metric-strip__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EFAE5A;
  opacity: 0.7;
}
.metric-strip__side--after .metric-strip__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-soft 2s ease-in-out infinite;
}
.metric-strip__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.metric-strip__items strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1;
  text-transform: none;
}
.metric-strip__items strong small {
  font-size: 0.5em;
  font-style: italic;
}
.metric-strip__side--before .metric-strip__items strong {
  color: #EFAE5A;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.55);
  text-decoration-thickness: 2px;
}
.metric-strip__side--before .metric-strip__items strong small {
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.55);
}
.metric-strip__side--after .metric-strip__items strong {
  color: var(--success);
}

.metric-strip__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02));
  border-left: 1px solid rgba(212, 165, 116, 0.18);
  border-right: 1px solid rgba(212, 165, 116, 0.18);
}
@media (max-width: 900px) {
  .metric-strip__divider {
    border-left: none; border-right: none;
    border-top: 1px solid rgba(212, 165, 116, 0.18);
    border-bottom: 1px solid rgba(212, 165, 116, 0.18);
    padding: 14px 0;
  }
  .metric-strip__divider .ba-divider__arrow { transform: rotate(90deg); }
}

/* ============================
   HERO — Cinematic redesign
   ============================ */
.thesis-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1400px 700px at 80% -10%, rgba(212, 165, 116, 0.06), transparent 60%),
    radial-gradient(ellipse 900px 500px at -10% 110%, rgba(36, 102, 219, 0.08), transparent 60%),
    linear-gradient(180deg, #0A1628 0%, #0B1A2E 100%);
}

.thesis-hero__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.thesis-hero__headline-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
  max-width: 100%;
}
@media (max-width: 900px) {
  .thesis-hero__headline-block { grid-template-columns: 1fr; gap: 24px; }
}

.thesis-hero__h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
}
.thesis-hero__h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.thesis-hero__sub {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 480px;
}
.thesis-hero__sub strong {
  color: var(--text-primary);
  font-weight: 500;
}
.thesis-hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.thesis-hero__ctas .micro-proof {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.thesis-hero__ctas .micro-proof::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-soft 2s ease-in-out infinite;
}

/* Before / After split — visual proof */
.beforeafter {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.03), transparent),
    rgba(10, 22, 40, 0.6);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
@media (max-width: 900px) {
  .beforeafter { grid-template-columns: 1fr; }
}

.ba-side {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  position: relative;
}
.ba-side--before {
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(239, 174, 90, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(239, 174, 90, 0.02), transparent);
}
.ba-side--before::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.7;
}
.ba-side--before > * { position: relative; z-index: 1; }
.ba-side--after {
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(212, 165, 116, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(34, 197, 94, 0.025), transparent);
}
.ba-side__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ba-side--before .ba-side__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EFAE5A;
}
.ba-side--after .ba-side__label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse-soft 2s ease-in-out infinite;
}

.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 64px;
  padding: 32px 0;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.02));
  border-left: 1px solid rgba(212, 165, 116, 0.2);
  border-right: 1px solid rgba(212, 165, 116, 0.2);
  position: relative;
}
.ba-divider__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.85;
}
.ba-divider__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #1A1208;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15), 0 0 24px rgba(212, 165, 116, 0.3);
  flex-shrink: 0;
}
.ba-divider__arrow svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .ba-divider { flex-direction: row; width: 100%; height: 64px; padding: 0 24px; }
  .ba-divider__label { writing-mode: horizontal-tb; transform: none; }
  .ba-divider__arrow { transform: rotate(90deg); }
}

/* Messy inquiry bubbles */
.ba-bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-bubble {
  padding: 14px 16px;
  background: rgba(239, 174, 90, 0.04);
  border: 1px solid rgba(239, 174, 90, 0.12);
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 88%;
  position: relative;
  filter: saturate(0.85);
}
.ba-bubble.right {
  align-self: flex-end;
  background: rgba(239, 174, 90, 0.07);
  border-color: rgba(239, 174, 90, 0.18);
}
.ba-bubble .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.ba-bubble .body {
  color: var(--text-primary);
}
.ba-bubble .body em {
  font-style: italic;
  color: var(--text-muted);
  font-family: 'Fraunces', Georgia, serif;
}

.ba-pain {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed rgba(239, 174, 90, 0.25);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ba-pain > div { position: relative; }
.ba-pain strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #EFAE5A;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 6px;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.5);
  text-decoration-thickness: 2px;
}
.ba-pain strong small {
  font-size: 0.5em;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 110, 110, 0.5);
}

.ba-gain {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed rgba(212, 165, 116, 0.3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ba-gain > div { position: relative; }
.ba-gain strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--success);
  font-weight: 500;
  text-transform: none;
  margin-bottom: 6px;
  line-height: 1;
}
.ba-gain strong small {
  font-size: 0.5em;
}

/* AFTER side — decision brief */
.ba-brief {
  border: 1px solid rgba(212, 165, 116, 0.2);
  background: rgba(10, 22, 40, 0.5);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-brief__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ba-brief__head .id { color: var(--accent); }
.ba-brief__verdict {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}
.ba-brief__verdict em {
  font-style: italic;
  color: var(--accent);
}
.ba-brief__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.ba-brief__row:last-child { border-bottom: none; }
.ba-brief__row .k {
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 9.5px;
}
.ba-brief__row .v { color: var(--text-primary); }
.ba-brief__row .v.gold { color: var(--accent); }
.ba-brief__row .v.ok { color: var(--success); }
.ba-brief__row .bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.ba-brief__row .bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* legacy ba-gain styling removed — consolidated above */
.hero-anim {
  position: relative;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.04), transparent),
    rgba(10, 22, 40, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 60px -30px rgba(0, 0, 0, 0.6);
}

.hero-anim__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 12px;
}
.hero-anim__head .id { color: var(--accent); font-weight: 500; }
.hero-anim__head .label {
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  transition: color 200ms ease-out;
}
.hero-anim__head .flag {
  color: var(--text-primary);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.hero-anim__body {
  position: relative;
  min-height: 340px;
}

.hero-anim__scene {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.hero-anim__scene.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-anim__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.hero-anim__progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scene 1 — Raw inquiry */
.scene-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.scene-text::before {
  content: '"';
  color: var(--accent);
  margin-right: 2px;
}
.scene-text::after {
  content: '"';
  color: var(--accent);
  margin-left: 2px;
}
.scene-fields {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 16px;
  font-size: 11.5px;
  margin: 0;
}
.scene-fields dt {
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.scene-fields dd {
  color: var(--text-primary);
  margin: 0;
}

/* Scene 2 — Processing */
.scene-proc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
}
.scene-proc-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.scene-proc-line .icon {
  width: 14px;
  display: inline-flex;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.scene-proc-line.ok { color: var(--text-primary); }
.scene-proc-line.ok .icon { color: var(--success); }
.scene-proc-line.pending {
  color: var(--text-muted);
}
.scene-proc-line.pending .icon {
  color: var(--accent);
  animation: spin 1.4s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scene 3 — Decision */
.scene-decision {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.scene-decision-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 12px;
}
.scene-decision-row .k {
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.scene-decision-row .v {
  color: var(--text-primary);
}
.scene-decision-row .v strong {
  color: var(--accent);
  font-weight: 500;
}
.scene-decision-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.scene-decision-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 200ms;
}
.scene-decision.active .scene-decision-bar-fill { width: var(--w, 82%); }

/* ============================
   FACTORY — 4 layers visualized
   ============================ */
.factory-section {
  padding: var(--s-128) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.factory-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.03), transparent),
    var(--bg-primary);
}
@media (max-width: 1024px) {
  .factory-stack { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .factory-stack { grid-template-columns: 1fr; }
}

.factory-layer {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 360px;
}
.factory-layer:last-child { border-right: none; }
@media (max-width: 1024px) {
  .factory-layer:nth-child(2n) { border-right: none; }
  .factory-layer:nth-child(1), .factory-layer:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 640px) {
  .factory-layer {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 0;
  }
  .factory-layer:last-child { border-bottom: none; }
}

.factory-layer__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.factory-layer__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.factory-layer__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.factory-layer__caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.factory-layer__caps li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.factory-layer__caps li::before {
  content: '+';
  color: var(--accent);
  flex-shrink: 0;
}

.factory-layer__output {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--border-strong);
}
.factory-layer__output-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.factory-layer__output-val {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  line-height: 1.4;
}

.factory-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  gap: 16px;
}
.factory-flow span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.factory-flow span::after {
  content: '→';
  color: var(--accent);
}
.factory-flow span:last-child::after { display: none; }

/* ============================
   DECISION REPORT ARTIFACT
   Real product visualization
   ============================ */
.report-artifact {
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.03), transparent 40%),
    var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 56px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.report-artifact__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, #1B2D49 0%, #142339 100%);
}
.report-artifact__head .id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.report-artifact__head .id strong { color: var(--accent); font-weight: 500; }
.report-artifact__head .breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: center;
}
.report-artifact__head .breadcrumb .sep { opacity: 0.4; margin: 0 6px; }
.report-artifact__head .actions {
  display: flex;
  gap: 6px;
}
.report-artifact__head .actions button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-secondary);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.report-artifact__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.report-artifact__body > * { min-width: 0; }
@media (max-width: 900px) {
  .report-artifact__body { grid-template-columns: 1fr; }
}

.report-artifact__main {
  padding: 32px;
  border-right: 1px solid var(--border);
}
@media (max-width: 900px) {
  .report-artifact__main { border-right: none; border-bottom: 1px solid var(--border); }
}

.report-artifact__verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.report-artifact__gauge {
  position: relative;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
}
.report-artifact__gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.report-artifact__gauge .track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 6;
}
.report-artifact__gauge .bar {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
}
.report-artifact__gauge-val {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
}
.report-artifact__gauge-val .num {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}
.report-artifact__gauge-val .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.report-artifact__verdict-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.report-artifact__verdict-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.report-artifact__verdict-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.report-artifact__verdict-name em {
  font-style: italic;
  color: var(--accent);
}
.report-artifact__verdict-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.report-artifact__section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-artifact__section-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.report-artifact__section-label:first-child { margin-top: 0; }

.scoring-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.scoring-table tr {
  border-bottom: 1px solid var(--border);
}
.scoring-table tr:last-child { border-bottom: none; }
.scoring-table td {
  padding: 10px 0;
  vertical-align: middle;
  color: var(--text-secondary);
}
.scoring-table td:first-child {
  width: 50%;
  color: var(--text-primary);
}
.scoring-table td.bar-cell {
  width: 30%;
}
.scoring-table .bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.scoring-table .bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.scoring-table td.score-val {
  width: 20%;
  text-align: right;
  color: var(--accent);
  font-feature-settings: "tnum";
}

.flag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.flag-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.flag-list li::before {
  flex-shrink: 0;
  width: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
.flag-list li.ok::before { content: '✓'; color: var(--success); }
.flag-list li.warn::before { content: '⚠'; color: #EFAE5A; }
.flag-list li.info::before { content: '◆'; color: var(--accent); }

/* Right panel — payload + meta */
.report-artifact__side {
  padding: 32px;
  background: rgba(10, 22, 40, 0.4);
}
.report-artifact__side-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.report-artifact__side-row:last-child { border-bottom: none; }
.report-artifact__side-row .k {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
}
.report-artifact__side-row .v {
  color: var(--text-primary);
  text-align: right;
}
.report-artifact__side-row .v.gold { color: var(--accent); }
.report-artifact__side-row .v.ok { color: var(--success); }

.payload-block {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  overflow-x: auto;
}
.payload-block .tok-key { color: #E8B888; }
.payload-block .tok-string { color: #7FCBA8; }
.payload-block .tok-num { color: var(--accent); }
.payload-block .tok-bool { color: #C18FE6; }
.payload-block pre { margin: 0; white-space: pre; }

.payload-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.payload-head .tag {
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-secondary);
}

/* ============================
   OPERATING PRINCIPLES
   ============================ */
.principles-section {
  padding: var(--s-128) 0;
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
@media (max-width: 768px) {
  .principles-grid { grid-template-columns: 1fr; }
}
.principle {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle:nth-child(2n) { border-right: none; }
.principle:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 768px) {
  .principle { border-right: none; }
  .principle:last-child { border-bottom: none; }
  .principle:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.principle__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.principle__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}
.principle__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================
   AUTHORITY / TEAM
   ============================ */
.authority-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .authority-grid { grid-template-columns: 1fr; gap: 40px; }
}
.authority-lede {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--accent);
  margin: 0 0 28px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.authority-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.authority-credentials {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.authority-credentials__head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.authority-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13.5px;
}
.authority-row:last-child { border-bottom: none; }
.authority-row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.authority-row .v {
  color: var(--text-primary);
  text-align: right;
}

/* ============================
   SERVICE DEEP DIVE — per-service detail
   ============================ */
.service-deep {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.025), transparent 30%),
    rgba(15, 31, 53, 0.5);
}
@media (max-width: 900px) {
  .service-deep { grid-template-columns: 1fr; }
}
.service-deep__main {
  padding: 48px 44px;
  border-right: 1px solid var(--border);
}
@media (max-width: 900px) {
  .service-deep__main { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
}
.service-deep__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.service-deep__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-deep__num strong {
  color: var(--accent);
  font-weight: 500;
}
.service-deep__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-transform: uppercase;
}
.service-deep__tag.live { color: var(--success); border-color: rgba(34, 197, 94, 0.3); }

.service-deep__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 8px 0 16px;
}
.service-deep__name em { font-style: italic; color: var(--accent); }
.service-deep__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 560px;
}
.service-deep__what { margin: 0; padding-top: 24px; border-top: 1px solid var(--border); }
.service-deep__what-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.service-deep__what-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.service-deep__what-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.service-deep__what-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

.service-deep__side {
  padding: 36px 32px;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  flex-direction: column;
}
.service-deep__side-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.service-deep__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13.5px;
  gap: 12px;
}
.service-deep__row:last-child { border-bottom: none; }
.service-deep__row .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.service-deep__row .v { color: var(--text-primary); text-align: right; }
.service-deep__row .v.gold { color: var(--accent); }

.service-deep__example {
  margin-top: 24px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.service-deep__example-label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.service-deep__example-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 6px; line-height: 1.55; }
.service-deep__example-row > span:last-child { flex: 1; min-width: 0; }
.service-deep__example-row .icon { width: 12px; flex-shrink: 0; }
.service-deep__row .v { color: var(--text-primary); text-align: right; max-width: 65%; }
.service-deep__example-row.ok .icon { color: var(--success); }
.service-deep__example-row.warn .icon { color: #EFAE5A; }
.service-deep__example-row.info .icon { color: var(--accent); }

/* Versus — Without / With */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) { .versus { grid-template-columns: 1fr; } }
.versus-col { padding: 36px 32px; }
.versus-col--without { background: rgba(255, 255, 255, 0.02); border-right: 1px solid var(--border); }
.versus-col--with {
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.04), transparent),
    rgba(10, 22, 40, 0.4);
}
@media (max-width: 768px) {
  .versus-col--without { border-right: none; border-bottom: 1px solid var(--border); }
}
.versus-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.versus-col--with .versus-label { color: var(--accent); }
.versus-col--with .versus-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.versus-col--without .versus-label::before {
  content: '×';
  color: #EFAE5A;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.versus-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.versus-list li { font-size: 15.5px; line-height: 1.55; color: var(--text-secondary); }
.versus-col--with .versus-list li { color: var(--text-primary); }
