/* ──────────────────────────────────────────────────────────────────────────
   Section header spacing for the homepage (overrides the tighter
   marketing.min.css defaults so leads / subs breathe properly).
   ────────────────────────────────────────────────────────────────────────── */
.idx-page .section-heading { margin-bottom: 24px; }
.idx-page .section-sub     { margin-bottom: 48px; }
.idx-page .section-label   { margin-bottom: 16px; }
/* Section-label--lined: small lead-line accent like homepage-v3 */
.idx-page .section-label.section-label--lined {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.idx-page .section-label.section-label--lined::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-primary-500, #3661ed);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   Outcomes section — custom UI illustrations for each .mktg-why-card on the
   homepage. They live inside .mktg-why-card-visual and stand in for product
   screenshots until real ones ship.
   ────────────────────────────────────────────────────────────────────────── */
.idx-out-vis {
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, #FAFBFE 0%, #F2F4FA 100%);
  border: 1px solid var(--color-neutral-200, #e6e9f2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* — Dashboards: KPI tiles + sparkline */
.idx-out-vis-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.idx-out-tile {
  background: #fff;
  border: 1px solid var(--color-neutral-200, #e6e9f2);
  border-radius: 8px;
  padding: 10px 12px;
}
.idx-out-tile-lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #757a97;
  margin-bottom: 4px;
}
.idx-out-tile-val {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #232532;
  letter-spacing: -0.02em;
  line-height: 1;
}
.idx-out-tile-delta {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  margin-top: 4px;
}
.idx-out-tile-delta.is-up   { color: #1D9E75; }
.idx-out-tile-delta.is-down { color: #c5443d; }
.idx-out-spark {
  width: 100%;
  height: 60px;
  display: block;
}

/* — Analysis: chat exchange */
.idx-out-vis-chat { gap: 8px; }
.idx-out-bubble {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 88%;
}
.idx-out-bubble--user {
  align-self: flex-end;
  background: #3661ED;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.idx-out-bubble--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--color-neutral-200, #e6e9f2);
  color: #232532;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.idx-out-bot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3661ED, #825CDE);
  flex-shrink: 0;
  margin-top: 5px;
}
.idx-out-chip {
  align-self: flex-start;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D9E75;
  background: rgba(29, 158, 117, 0.10);
  padding: 4px 10px;
  border-radius: 999px;
}

/* — Recommendations: single rec card */
.idx-out-vis-rec { padding: 14px; }
.idx-out-rec {
  background: #fff;
  border: 1px solid var(--color-neutral-200, #e6e9f2);
  border-radius: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.idx-out-rec-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.idx-out-rec-tag.is-warn { background: rgba(245, 158, 11, 0.12); color: #b8731b; }
.idx-out-rec-tag.is-good { background: rgba(29, 158, 117, 0.12); color: #1D9E75; }
.idx-out-rec-title {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #232532;
  margin: 0 0 3px;
  line-height: 1.3;
}
.idx-out-rec-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #757a97;
  margin: 0;
  line-height: 1.4;
}
.idx-out-rec-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #3661ED;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.idx-out-rec-action svg { width: 12px; height: 12px; }
.idx-out-rec-action:hover { color: #1f3fbc; }

/* — Workflows: numbered flow steps */
.idx-out-vis-flow { gap: 8px; }
.idx-out-flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--color-neutral-200, #e6e9f2);
  border-radius: 8px;
  padding: 10px 12px;
}
.idx-out-flow-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(54, 97, 237, 0.12);
  color: #3661ED;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.idx-out-flow-body { min-width: 0; }
.idx-out-flow-name {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #232532;
  margin: 0 0 2px;
  line-height: 1.3;
}
.idx-out-flow-type {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: #757a97;
  margin: 0;
}

@media (max-width: 600px) {
  .idx-out-vis-tiles { grid-template-columns: 1fr 1fr; }
  .idx-out-rec { grid-template-columns: auto 1fr; }
  .idx-out-rec-action { grid-column: 1 / -1; justify-self: end; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Dark footer for the homepage (.idx-page) — mirrors the .sk-page variant.
   ────────────────────────────────────────────────────────────────────────── */
.idx-page {
  --idx-foot-bg:   #232532;
  --idx-foot-line: rgba(255, 255, 255, 0.08);
  --idx-foot-t2:   #c8cee0;
  --idx-foot-t3:   #8e93af;
  --idx-foot-t4:   #6b7088;
}
.idx-page .footer {
  background: var(--idx-foot-bg) !important;
  background-image: none !important;
  border-top: 1px solid var(--idx-foot-line);
}
.idx-page .footer-logo img { filter: brightness(0) invert(1); }
.idx-page .footer-tagline { color: var(--idx-foot-t3); }
.idx-page .footer-social a { color: var(--idx-foot-t3); }
.idx-page .footer-social a:hover { color: #fff; }
.idx-page .footer-col-title,
.idx-page .footer-contact-label { color: var(--idx-foot-t4); }
.idx-page .footer-col a { color: var(--idx-foot-t2); }
.idx-page .footer-col a:hover { color: #fff; }
.idx-page .footer-bottom { border-top: 1px solid var(--idx-foot-line); }
.idx-page .footer-bottom-links a { color: var(--idx-foot-t3); }
.idx-page .footer-bottom-links a:hover { color: #fff; }
.idx-page .footer-copyright { color: var(--idx-foot-t4); }
.idx-page .footer-watermark img {
  filter: brightness(0) invert(1);
  opacity: 0.06;
}

/* ==========================================================================
   Index v2 — Hero (centered + tabbed showcase, Playground-style)
   ========================================================================== */

.idx2-hero {
  position: relative;
  background: linear-gradient(180deg, #f8f9fc 0%, #f5f8ff 60%, #f8f9fc 100%);
  /* Top padding accounts for the fixed marketing navbar (~72px) + 120px of breathing room. */
  padding: 192px 0 96px;
  overflow: hidden;
}
.idx2-hero::before {
  content: '';
  position: absolute;
  inset: -120px 0 auto 0;
  height: 640px;
  background: radial-gradient(ellipse 800px 360px at 50% 0%, rgba(54, 97, 237, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.idx2-container {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 40px;
}
/* New hero wrapper using the global padding-global + container-large pattern.
   We just need to lift it above the .idx2-hero::before radial gradient. */
.idx2-hero > .padding-global { position: relative; z-index: 1; }

/* ─── Centered hero copy ──────────────────────────────────────────────── */
.idx2-hero-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

/* Badge — matches .mktg-hero .hero-badge */
.idx2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted, #5A6478);
  margin-bottom: 24px;
}
.idx2-badge-keyword {
  display: inline-block;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 500;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  background-image: linear-gradient(90deg, var(--color-primary-500), #825CDE, var(--color-primary-500));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: idx2BadgeGradient 3s linear infinite;
}
.idx2-badge-keyword::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  border-radius: 7px;
  z-index: -1;
}
@keyframes idx2BadgeGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* H1 — Instrument Sans, centered, matches homepage scale */
.idx2-h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2.4px;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  text-align: center;
}
.idx2-h1 .idx2-muted {
  color: var(--color-primary-500);
  font-weight: 500;
}

/* Subtitle */
.idx2-sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 19px;
  color: var(--text-muted, #5A6478);
  line-height: 1.65;
  margin: 0 0 32px 0;
  max-width: 640px;
  text-align: center;
}
.idx2-sub strong {
  color: var(--color-neutral-900);
  font-weight: 500;
}

/* CTA row */
.idx2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

/* ─── Tabs (using global .uc-tab-strip, centered + auto-width) ────────── */
.idx2-show {
  margin-top: 8px;
}
.idx2-show .uc-tab-strip {
  max-width: max-content;
  margin: 0 auto 32px;
}
.idx2-show .uc-tab {
  flex: 0 0 auto;
  padding: 10px 16px;
}
.idx2-show .uc-tab-icon { color: var(--color-neutral-500); }
.idx2-show .uc-tab.active .uc-tab-icon { color: var(--color-neutral-700); }
/* ─── Showcase panel — large, image-like ──────────────────────────────── */
.idx2-showcase {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  isolation: isolate;
}
.idx2-showcase::before {
  content: '';
  position: absolute;
  inset: -40px -20px -40px -20px;
  background:
    radial-gradient(ellipse 40% 60% at 15% 30%, rgba(54, 97, 237, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 70%, rgba(178, 92, 222, 0.12), transparent 70%);
  filter: blur(36px);
  z-index: -1;
  border-radius: 48px;
}
.idx2-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  border-radius: 18px;
  padding: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 48px -16px rgba(15, 22, 36, 0.22),
    0 2px 6px rgba(15, 22, 36, 0.06);
  overflow: hidden;
}

/* App-like window chrome */
.idx2-panel-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-neutral-100);
  background: linear-gradient(180deg, #fbfcfe, #f5f8ff);
}
.idx2-chrome-dots {
  display: inline-flex;
  gap: 6px;
}
.idx2-chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-neutral-200);
}
.idx2-chrome-url {
  margin: 0 auto;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  color: var(--color-neutral-500);
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-100);
  border-radius: 8px;
  padding: 4px 14px;
  min-width: 280px;
  text-align: center;
}
.idx2-chrome-url::before {
  content: '⌘';
  margin-right: 8px;
  color: var(--color-neutral-300);
}

.idx2-panel-body {
  padding: 24px 28px 28px;
  min-height: 440px;
  position: relative;
}

.idx2-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-neutral-100);
}
.idx2-panel-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-neutral-900);
  display: flex;
  align-items: center;
  gap: 12px;
}
.idx2-panel-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--color-primary-50);
  color: var(--color-primary-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.idx2-panel-icon svg { width: 20px; height: 20px; }
.idx2-panel-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-neutral-500);
  text-align: right;
  max-width: 380px;
  margin-top: 4px;
}

/* Panes */
.idx2-pane { display: none; }
.idx2-pane.is-active { display: block; animation: idx2PaneIn 0.25s ease-out both; }
@keyframes idx2PaneIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mock: Dashboards ── */
.idx2-mock-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.idx2-metric {
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
  padding: 14px;
  background: #fafbfd;
}
.idx2-metric-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
  margin-bottom: 8px;
}
.idx2-metric-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-neutral-900);
  line-height: 1.1;
}
.idx2-metric-delta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  margin-top: 6px;
}
.idx2-metric-delta.is-up   { color: #08833B; }
.idx2-metric-delta.is-down { color: #C42B2B; }
.idx2-chart {
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(180deg, #fafbfd, #f5f8ff);
}
.idx2-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--color-neutral-600);
  margin-bottom: 12px;
}
.idx2-chart-head strong {
  color: var(--color-neutral-900);
  font-weight: 600;
}
.idx2-chart svg {
  width: 100%;
  height: 140px;
  display: block;
}

/* ── Mock: On-Demand Analysis (Sage chat UI from Figma 62GUhGfal6yeXpbO8sWuHA / 614:23512) ── */
.idx2-chat {
  background: #f1f5f9;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 25px 25px 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.idx2-chat-row { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.idx2-chat-row--user { align-items: flex-end; }
.idx2-chat-row--bot,
.idx2-chat-row--system { align-items: flex-start; }
.idx2-chat-row--system { align-items: center; }

.idx2-chat-bubble {
  background: #3661ed;
  color: #fff;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  padding: 10px 12px;
  border-radius: 12px 12px 2px 12px;
  max-width: 420px;
  display: inline-flex;
  align-items: center;
}
.idx2-chat-bubble--attached {
  flex-direction: column;
  align-items: stretch;
  padding: 10px 12px 0;
  width: 420px;
  max-width: 420px;
}
.idx2-chat-bubble--attached .idx2-chat-text {
  padding-bottom: 6px;
}
.idx2-chat-attach {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 0 10px;
}
.idx2-chat-attach-chip {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 2px 8px;
  height: 21px;
}
.idx2-chat-attach-chip svg { width: 12px; height: 12px; flex-shrink: 0; }
.idx2-chat-attach-chip .idx2-chat-filename {
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  color: #fff;
}

.idx2-chat-meta {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 12px;
  line-height: 19px;
  color: #757a97;
}

.idx2-chat-system {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 12px;
  line-height: 19px;
  color: #6b7280;
  text-align: center;
  padding: 4px 8px;
}

.idx2-chat-assistant {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.idx2-chat-assistant-avatar {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.idx2-chat-assistant-avatar img { width: 100%; height: 100%; display: block; }
.idx2-chat-assistant-body {
  flex: 1;
  min-width: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #232532;
}
.idx2-chat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8f9fc;
  border: 1px solid #d4d9ea;
  border-radius: 4px;
  padding: 0 6px;
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #b85300;
  vertical-align: middle;
  margin: 0 2px;
}

.idx2-chat-thinking {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.idx2-chat-thinking .idx2-chat-assistant-avatar { align-self: center; }
.idx2-chat-thinking-body {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.idx2-chat-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.idx2-chat-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary-500);
  animation: idx2Dot 1.4s ease-in-out infinite;
}
.idx2-chat-dots span:nth-child(2) { animation-delay: 0.2s; }
.idx2-chat-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes idx2Dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}
.idx2-chat-thinking-label {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 12px;
  line-height: 19px;
  color: #757a97;
}
.idx2-chat-row--bot .idx2-chat-meta { padding-left: 36px; }

/* ── Mock: Skills ── */
.idx2-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.idx2-skill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
}
.idx2-skill-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-500);
}
.idx2-skill-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-800);
  flex: 1;
}
.idx2-skill-count {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--color-neutral-500);
}
.idx2-skill-custom {
  background: var(--color-primary-50);
  border-color: var(--color-primary-100);
  border-style: dashed;
}
.idx2-skill-custom .idx2-skill-name {
  color: var(--color-primary-800);
}

/* ── Mock: Recommendations ── */
.idx2-recs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.idx2-rec {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
  background: #fff;
}
.idx2-rec-tag {
  flex-shrink: 0;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--color-primary-50);
  color: var(--color-primary-800);
  border: 1px solid var(--color-primary-100);
}
.idx2-rec-tag.is-warn {
  background: #FEF3C7;
  color: #92400E;
  border-color: #FDE68A;
}
.idx2-rec-tag.is-good {
  background: #DCFCE7;
  color: #166534;
  border-color: #BBF7D0;
}
.idx2-rec-body { flex: 1; }
.idx2-rec-title {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-neutral-900);
  margin: 0 0 2px 0;
}
.idx2-rec-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--color-neutral-600);
  margin: 0;
}
.idx2-rec-action {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.idx2-rec-action svg { width: 14px; height: 14px; }

/* ── Mock: Workflows (pipeline flow style) ── */
.idx2-wf {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 20px 24px 28px;
}
.idx2-wf-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.idx2-wf-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-neutral-900);
  letter-spacing: -0.01em;
  margin: 0;
}
.idx2-wf-edit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-neutral-500);
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  border-radius: 8px;
  padding: 7px 14px;
  cursor: not-allowed;
}
.idx2-wf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.idx2-wf-trigger {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--color-neutral-700);
}
.idx2-wf-trigger strong {
  font-weight: 600;
  color: var(--color-neutral-900);
}
.idx2-wf-trigger-value { color: var(--color-primary-500); }
.idx2-wf-toggles {
  display: flex;
  align-items: center;
  gap: 14px;
}
.idx2-wf-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--color-neutral-700);
}
.idx2-wf-toggle-switch {
  width: 30px;
  height: 18px;
  background: var(--color-primary-500);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}
.idx2-wf-toggle-switch::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  right: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.idx2-wf-toggle-sep {
  color: var(--color-neutral-300);
  margin: 0 2px;
}
.idx2-wf-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral-900);
  margin: 16px 0 12px;
}

.idx2-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* vertical line connecting the numbered circles */
.idx2-flow::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--color-primary-300);
  opacity: 0.5;
  z-index: 0;
}

.idx2-flow-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.idx2-flow-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--color-primary-500);
  color: var(--color-primary-500);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.idx2-flow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-neutral-200);
  border-radius: 12px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 1px 2px rgba(15, 22, 36, 0.04);
}
.idx2-flow-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-500);
}
.idx2-flow-icon svg { width: 18px; height: 18px; }
.idx2-flow-body { flex: 1; min-width: 0; }
.idx2-flow-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral-900);
  line-height: 1.4;
  margin: 0;
}
.idx2-flow-type {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--color-primary-500);
  margin-top: 2px;
}
.idx2-flow-chevron {
  flex-shrink: 0;
  color: var(--color-neutral-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.idx2-flow-chevron svg { width: 16px; height: 16px; }

/* Engine "powers these surfaces" band — lives inside the Skills pane.
   Brand-gradient dark card that visually closes the engine→outputs loop. */
.idx2-engine-powers {
  position: relative;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--color-neutral-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.idx2-engine-powers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 0% 100%, rgba(54, 97, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 120% at 100% 0%, rgba(178, 92, 222, 0.22), transparent 60%);
  pointer-events: none;
}
.idx2-engine-powers::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-300), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.idx2-engine-powers > * { position: relative; z-index: 1; }

.idx2-engine-powers-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.idx2-engine-powers-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(54, 97, 237, 0.35), rgba(178, 92, 222, 0.28));
  color: var(--color-primary-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144, 166, 238, 0.30);
}
.idx2-engine-powers-icon svg { width: 18px; height: 18px; }
.idx2-engine-powers-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.idx2-engine-powers-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-primary-300);
  white-space: nowrap;
}
.idx2-engine-powers-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.idx2-engine-powers-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}
.idx2-engine-powers-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: default;
}
.idx2-engine-powers-chip:hover {
  background: rgba(54, 97, 237, 0.18);
  border-color: rgba(144, 166, 238, 0.50);
  transform: translateY(-1px);
}
.idx2-engine-powers-chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary-300);
}

/* ─── Social proof ─────────────────────────────────────────────────────── */
.idx2-proof {
  margin-top: 80px;
  text-align: center;
}
.idx2-proof-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
  margin-bottom: 24px;
}
.idx2-proof-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  filter: grayscale(1);
  opacity: 0.7;
}
.idx2-proof-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .idx2-h1 { font-size: 56px; letter-spacing: -1.8px; }
  .idx2-mock-dash { grid-template-columns: repeat(2, 1fr); }
  .idx2-skills-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .idx2-hero { padding: 48px 0 72px; }
  .idx2-container { padding: 0 20px; }
  .idx2-h1 { font-size: 40px; letter-spacing: -1.2px; }
  .idx2-sub { font-size: 16px; }
  .idx2-panel-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .idx2-panel-tagline { text-align: left; max-width: none; }
  .idx2-panel-body { padding: 18px 18px 22px; }
  .idx2-chrome-url { min-width: 160px; }
  .idx2-show .uc-tab-label { display: none; }
  .idx2-proof-logos { gap: 32px; }
}
@media (max-width: 480px) {
  .idx2-mock-dash { grid-template-columns: 1fr 1fr; }
  .idx2-skills-grid { grid-template-columns: 1fr; }
  .idx2-engine-powers { flex-direction: column; align-items: flex-start; gap: 14px; }
  .idx2-engine-powers-chips { width: 100%; justify-content: flex-start; }
  .idx2-wf-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .idx2-wf-toggles { flex-wrap: wrap; }
  .idx2-chat-bubble--attached { width: 100%; }
}
