/* Lasso AI pages — MCP / ChatGPT / Claude. Tokens from HANDOFF.md. */
.ai-page {
  display: block;
  width: 100%;
  overflow-x: clip;
  font-size: 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.ai-page *,
.ai-page *::before,
.ai-page *::after { box-sizing: border-box; }
.ai-page a { color: #5e36ca; text-decoration: none; transition: color 150ms; }
.ai-page a:hover { color: #40258a; }
.ai-page h1,
.ai-page h2,
.ai-page h3,
.ai-page h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
  color: #242423;
  text-wrap: pretty;
}
.ai-page p { margin: 0; line-height: 1.5; text-wrap: pretty; }
.ai-page code,
.ai-page pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ai-page button { font-family: inherit; cursor: pointer; }
.ai-page ::selection { background: #5e36ca; color: #fff; }

.ai-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.ai-page > .ai-section,
.ai-page > .ai-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.ai-section {
  border-bottom: 1px solid #e3e3e3;
  background: #fff;
}
.ai-section--soft { background: #f7f7fc; }
.ai-section__inner {
  width: 100% !important;
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 72px 32px;
  box-sizing: border-box;
}
.ai-section__inner--hero { padding: 64px 32px; }
.ai-section__inner--setup { padding: 64px 32px; }
.ai-section__inner--pick { padding: 56px 32px; }

.ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
  width: 100%;
}
.ai-split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 56px;
  width: 100%;
  align-items: start;
}
.ai-stack,
.ai-stack--tight,
.ai-stack--14,
.ai-stack--8 {
  display: flex;
  flex-direction: column;
}
.ai-stack { gap: 22px; }
.ai-stack--tight { gap: 14px; }
.ai-stack--14 { gap: 14px; }
.ai-stack--8 { gap: 8px; }
.ai-sticky { position: sticky; top: 96px; align-self: start; }

.ai-kicker {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5e36ca;
  font-weight: 700;
}
.ai-h1 { font-size: 54px; letter-spacing: -0.5px; }
.ai-h2 { font-size: 34px; }
.ai-h3 { font-size: 22px; }
.ai-lede { font-size: 20px; color: #64748b; max-width: 520px; }
.ai-muted { font-size: 16px; color: #64748b; }
.ai-tiny { font-size: 13px; color: #64748b; }

.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ede7fb;
  color: #40258a;
  border: 1px solid #d8c8f5;
  font-size: 13px;
  font-weight: 600;
  width: max-content;
  max-width: 100%;
  align-self: flex-start;
}
.ai-pill--soft {
  background: #f7f7fc;
  border: 1px solid #e3e3e3;
  color: #242423;
  padding: 4px 12px 4px 6px;
  gap: 8px;
}
.ai-pill--teal { background: #d8f5ee; color: #1b8f7b; border: 0; font-size: 11px; padding: 2px 8px; }
.ai-pill--warn { background: #fff1d6; color: #8a5a04; border: 0; font-size: 11px; padding: 2px 8px; }
.ai-pill--err { background: #fbe1e3; color: #b1434d; border: 0; font-size: 12px; font-weight: 600; padding: 2px 8px; }
.ai-pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #242423;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ai-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ai-checks { display: flex; gap: 12px 22px; font-size: 14px; color: #64748b; flex-wrap: wrap; }
.ai-checks span { white-space: nowrap; }
.ai-checks i { color: #22baa0; margin-right: 6px; }

.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  width: max-content;
  max-width: 100%;
  align-self: flex-start;
  border-radius: 8px;
  font-weight: 600;
  font-size: 17px;
  transition: color 150ms, background 150ms, border-color 150ms;
  border: 0;
  text-decoration: none;
}
.ai-btn--primary,
.ai-page a.ai-btn--primary,
.ai-page a.ai-btn--primary:visited {
  background: #22baa0;
  color: #fff !important;
  text-decoration: none !important;
}
.ai-page a.ai-btn--primary:hover,
.ai-page a.ai-btn--primary:focus {
  color: #fff !important;
  background: #1b8f7b;
  text-decoration: none !important;
}
.ai-btn--ghost,
.ai-page a.ai-btn--ghost,
.ai-page a.ai-btn--ghost:visited {
  background: transparent;
  border: 2px solid #444;
  color: #444 !important;
  text-decoration: none !important;
}
.ai-page a.ai-btn--ghost:hover { color: #242423 !important; }
.ai-btn--sm {
  height: 40px;
  padding: 0 16px;
  font-size: 15px;
}
.ai-btn--copy {
  height: 34px;
  padding: 0 12px;
  border-radius: 7px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 150ms;
}
.ai-btn--copy:hover { background: #f7f7fc; }
.ai-btn--copy.is-copied { background: #d8f5ee; color: #1b8f7b; border-color: #a8e3d4; }

.ai-conn {
  width: 100%;
  min-width: 0;
  background: #1c1840;
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid #1c1840;
}
.ai-conn__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ai-conn__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.ai-conn__brand img { height: 22px; filter: brightness(0) invert(1); }
.ai-conn__http {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 186, 160, 0.18);
  color: #00ffd3;
}
.ai-conn__http i,
.ai-conn__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffd3;
  display: inline-block;
}
.ai-conn__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
}
.ai-conn__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b09ae5;
  font-weight: 600;
}
.ai-conn code { font-size: 15px; color: #fff; }
.ai-conn .ai-key { color: #00ffd3; }
.ai-conn .ai-btn--copy {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
}
.ai-conn .ai-btn--copy:hover { background: rgba(255, 255, 255, 0.1); }
.ai-conn a.ai-btn--copy { color: #fff; }
.ai-conn a.ai-btn--copy:hover { color: #fff; }

.ai-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 9px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ai-tabs::-webkit-scrollbar { display: none; }
.ai-tabs--light {
  background: #f7f7fc;
  border: 1px solid #e3e3e3;
}
.ai-tab {
  flex: 1 1 auto;
  min-width: max-content;
  height: 32px;
  padding: 0 8px;
  white-space: nowrap;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: #b09ae5;
  transition: background 150ms, color 150ms;
}
.ai-tabs--light .ai-tab { color: #64748b; height: 34px; padding: 0 14px; font-size: 14px; }
.ai-tab.is-on { background: #5e36ca; color: #fff; }
.ai-tabs--light .ai-tab.is-on { background: #fff; color: #242423; }

.ai-pre {
  margin: 0;
  background: #120f2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: #e6e1f7;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 118px;
}
.ai-pre--light-wrap { background: #1c1840; border: 0; font-size: 13.5px; min-height: 0; }
.ai-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #b09ae5;
}
.ai-tabs--light + .ai-pre,
.ai-snip-body .ai-note { color: #64748b; font-size: 14px; }
.ai-copy-purple {
  height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  border: 0;
  background: #5e36ca;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 150ms;
}
.ai-copy-purple:hover { background: #7a55dc; color: #fff; }

.ai-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ai-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ai-pick {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 22px;
  color: #444;
  transition: border-color 150ms;
}
.ai-pick:hover { border-color: #5e36ca; color: #444; }
.ai-pick h3 { font-size: 20px; }
.ai-pick p { font-size: 15px; color: #64748b; margin-top: 4px; }
.ai-pick__go { margin-top: auto; font-weight: 600; color: #5e36ca; font-size: 15px; }
.ai-iconbox {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f7f7fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #242423;
}
.ai-head-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }

.ai-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.ai-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 32px;
  position: relative;
  min-width: 0;
}
.ai-step > * { min-width: 0; max-width: 100%; }
.ai-step:last-child { padding-bottom: 0; }
.ai-step__rail { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ai-step__n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5e36ca;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ai-step__n--done { background: #22baa0; }
.ai-step__line { flex: 1; width: 2px; background: #e3e3e3; min-height: 12px; }
.ai-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7fc;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #64748b;
  flex-wrap: wrap;
  min-width: 0;
  overflow-wrap: anywhere;
}
.ai-ai-box {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #f7f7fc;
}
.ai-snip {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
  max-width: 100%;
}
.ai-snip__tabs {
  display: flex;
  background: #f7f7fc;
  border-bottom: 1px solid #e3e3e3;
  padding: 6px;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ai-snip__tabs::-webkit-scrollbar { display: none; }
.ai-snip-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.ai-quote {
  margin: 0;
  flex: 1;
  border-left: 3px solid #5e36ca;
  background: #f7f7fc;
  padding: 14px 16px;
  font-size: 16px;
  color: #242423;
  border-radius: 0 8px 8px 0;
}
.ai-inline-code {
  font-size: 14px;
  background: #f7f7fc;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 1px 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ai-cap {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-cap h3 { font-size: 18px; }
.ai-cap p { font-size: 15px; color: #64748b; }

.ai-prompt {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
  transition: border-color 150ms;
}
.ai-prompt:hover { border-color: #b09ae5; }
.ai-prompt__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e36ca;
  padding-top: 3px;
  line-height: 1.3;
}
.ai-prompt__text { font-size: 16px; color: #242423; line-height: 1.45; }
.ai-prompt .ai-btn--copy { margin-top: 0; flex-shrink: 0; }

.ai-dl {
  margin: 0 !important;
  padding: 0 !important;
  padding-inline-start: 0 !important;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  font-size: 15px;
}
.ai-dl dt {
  padding: 14px 18px;
  border-bottom: 1px solid #e3e3e3;
  color: #64748b;
  font-weight: 600;
  background: #fbfbfe;
}
.ai-dl dd {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid #e3e3e3;
}
.ai-dl dt:last-of-type,
.ai-dl dd:last-of-type { border-bottom: 0; }
.ai-cfg { border: 1px solid #e3e3e3; border-radius: 12px; background: #fff; overflow: hidden; }
.ai-cfg__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #e3e3e3;
  background: #fbfbfe;
  font-size: 13px;
  color: #64748b;
}
.ai-cfg pre {
  margin: 0;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #242423;
  white-space: pre-wrap;
  word-break: break-word;
}

.ai-faq { display: flex; flex-direction: column; border-top: 1px solid #e3e3e3; }
.ai-faq__item { border-bottom: 1px solid #e3e3e3; }
.ai-faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #242423;
}
.ai-faq__btn i { color: #5e36ca; font-size: 14px; }
.ai-faq__a { display: none; padding: 0 0 18px; color: #64748b; font-size: 16px; max-width: 640px; }
.ai-faq__item.is-open .ai-faq__a { display: block; }

.ai-cta { background: #1c1840; border-bottom: 0; }
.ai-cta__inner {
  width: 100% !important;
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
}
.ai-cta h2 { font-size: 38px; color: #fff; }
.ai-cta p { color: #b09ae5; font-size: 17px; }
.ai-cta a.ai-btn--primary:hover { color: #fff; }
.ai-cta__links { font-size: 14px; color: #b09ae5; }
.ai-cta__links a { color: #fff; text-decoration: underline; }
.ai-cta__legal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 40px;
  font-size: 13px;
  color: #b09ae5;
  box-sizing: border-box;
}
.ai-cta__legal a { color: #b09ae5; text-decoration: underline; }
.ai-page .ai-cta__legal a { color: #b09ae5 !important; text-decoration: underline !important; }

.ai-legal {
  padding: 24px 32px 8px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #64748b;
}

.ai-mock {
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ai-mock__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #e3e3e3;
  background: #fbfbfe;
  font-size: 13px;
  color: #64748b;
}
.ai-mock__bar strong { color: #242423; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.ai-mock__bar img { height: 16px; }
.ai-mock__body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.ai-bubble {
  align-self: flex-end;
  max-width: 80%;
  background: #f7f7fc;
  border-radius: 16px 16px 4px 16px;
  padding: 12px 16px;
  font-size: 16px;
  color: #242423;
}
.ai-bubble--thread { max-width: 78%; }
.ai-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ai-stat {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ai-stat b { font-size: 28px; font-weight: 800; line-height: 1; }
.ai-stat span { font-size: 13px; color: #64748b; }
.ai-chip {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.ai-chip.is-on { background: #ede7fb; color: #40258a; border-color: #d8c8f5; }
.ai-chip-answer {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 12px 16px;
  background: #fbfbfe;
  font-size: 15px;
  color: #242423;
  min-height: 64px;
  display: flex;
  align-items: center;
}
.ai-table { border: 1px solid #e3e3e3; border-radius: 10px; overflow: hidden; font-size: 15px; }
.ai-tr {
  display: grid;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #e3e3e3;
  align-items: center;
}
.ai-tr:last-child { border-bottom: 0; }
.ai-tr--3 { grid-template-columns: 32px 1fr auto; }
.ai-tr--4 { grid-template-columns: 32px 1fr auto auto; gap: 14px; }
.ai-rate {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #e3e3e3;
  background: #fff;
}

.ai-approve {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  overflow: hidden;
}
.ai-approve__bar {
  padding: 10px 18px;
  border-bottom: 1px solid #e3e3e3;
  background: #fbfbfe;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8a5a04;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ai-approve__grid {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 12px;
  align-items: center;
}
.ai-side {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-side--new { border-color: #22baa0; background: #f4fcfa; }
.ai-side__k {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
}
.ai-side--new .ai-side__k { color: #1b8f7b; }
.ai-approve__foot {
  padding: 0 22px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ai-reject {
  height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms;
}
.ai-reject:hover { background: #f7f7fc; }
.ai-reject.is-rejected { background: #fbe1e3; color: #b1434d; border-color: #f0c4c8; }
.ai-approve.is-rejected .ai-approve__bar { color: #b1434d; }
.ai-ok {
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  border: 0;
  background: #22baa0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 150ms;
}
.ai-ok.is-applied { background: #1b8f7b; }

.ai-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 12px 16px;
}
.ai-surfaces {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid #e3e3e3;
  padding: 6px;
  border-radius: 12px;
}
.ai-surface {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 150ms, color 150ms;
}
.ai-surface.is-on { background: #1c1840; color: #fff; }
.ai-kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 10px 14px;
}
.ai-rank {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}
.ai-rank__n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ede7fb;
  color: #40258a;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ai-flow { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; color: #64748b; flex-wrap: wrap; }
.ai-flow .go { color: #22baa0; }

.mcp-landing header.header,
.chatgpt-landing header.header,
.claude-landing header.header { border-bottom: 1px solid #e3e3e3; }

/* Theme (style.css) uses `a{color:purple}`, `p{margin-bottom:2rem}`, `h1{3.4rem}`.
   Those beat unscoped .ai-btn / .ai-h1 and blow out hero spacing. */
body.mcp-landing,
body.chatgpt-landing,
body.claude-landing {
  font-size: 18px;
  line-height: 1.5;
}
.ai-page p,
.ai-page h1,
.ai-page h2,
.ai-page h3,
.ai-page h4 {
  margin: 0 !important;
}
.ai-page p { line-height: 1.5 !important; }
.ai-page h1.ai-h1 {
  font-size: 54px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  color: #242423 !important;
}
.ai-page h2.ai-h2 {
  font-size: 34px !important;
  line-height: 1.15 !important;
  color: #242423 !important;
}
.ai-page .ai-cta h2 {
  color: #fff !important;
  font-size: 38px !important;
}
.ai-page a { text-decoration: none !important; }
.ai-page a.ai-pick,
.ai-page a.ai-pick:hover { color: #444; }
.ai-page a.ai-pick .ai-pick__go { color: #5e36ca; }
.ai-page .ai-conn a,
.ai-page .ai-conn a:hover { color: #fff !important; }
.ai-page .ai-cta a.ai-btn--primary { color: #fff !important; }
.ai-page .ai-cta__links a { color: #fff !important; text-decoration: underline !important; }
.ai-page blockquote.ai-quote {
  font-style: normal !important;
  font-family: inherit !important;
  color: #242423 !important;
  border-left: 3px solid #5e36ca !important;
  padding: 14px 16px !important;
  margin: 0 !important;
}
.ai-page ol.ai-steps,
.ai-page .ai-steps,
.ai-page dl.ai-dl,
.ai-page dl {
  margin: 0 !important;
  padding: 0 !important;
  padding-inline-start: 0 !important;
  list-style: none !important;
}
.ai-page .ai-steps > li {
  margin: 0 !important;
  line-height: 1.5 !important;
}
.ai-pick-tag { white-space: nowrap; flex-shrink: 0; }

/* 1580 = 1500 homepage column + 40px gutters (.home-header-container). */
@media (min-width: 1580px) {
  .ai-page > .ai-section,
  .ai-page > .ai-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ai-section__inner,
  .ai-cta__inner,
  .ai-hero-grid {
    width: 1500px !important;
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-items: stretch;
  }
  .ai-conn {
    width: 100% !important;
  }
}
@media (max-width: 900px) {
  .ai-hero-grid,
  .ai-split,
  .ai-grid-4,
  .ai-grid-3,
  .ai-approve__grid,
  .ai-dl,
  .ai-cta__inner { grid-template-columns: minmax(0, 1fr); }
  .ai-h1,
  .ai-page h1.ai-h1 { font-size: 36px !important; }
  .ai-h2,
  .ai-page h2.ai-h2 { font-size: 28px !important; }
  .ai-cta h2,
  .ai-page .ai-cta h2 { font-size: 28px !important; }
  .ai-sticky { position: static; }
  .ai-prompt { grid-template-columns: minmax(0, 1fr) auto; }
  .ai-prompt__tag { grid-column: 1 / -1; padding-top: 0; }
  .ai-stats { grid-template-columns: minmax(0, 1fr); }
  .ai-surfaces { flex-direction: column; }
  .ai-tabs,
  .ai-snip__tabs { flex-wrap: nowrap; overflow-x: auto; min-width: 0; }
  .ai-section__inner,
  .ai-section__inner--hero,
  .ai-section__inner--setup,
  .ai-section__inner--pick,
  .ai-cta__inner,
  .ai-cta__legal { padding-left: 20px; padding-right: 20px; }
  .ai-dl dt { border-bottom: 0; }
  .ai-cta__inner { padding-top: 48px; padding-bottom: 20px; }
}
@media (max-width: 640px) {
  .ai-page h1.ai-h1 { font-size: 32px !important; }
  .ai-btn { height: 44px; font-size: 16px; padding: 0 16px; }
  .ai-prompt { grid-template-columns: minmax(0, 1fr); }
  .ai-prompt .ai-btn--copy { justify-self: start; }
  .ai-conn .ai-tabs { overflow-x: auto; }
  .ai-grid-4,
  .ai-grid-3 { grid-template-columns: minmax(0, 1fr); }
  .ai-approve__grid { grid-template-columns: minmax(0, 1fr); }
}
