@charset "UTF-8";
/* "Five models. One integration." — pill tabs over a two-column panel.
   Panel contents follow Figma "Model explorer" (node 16205:16066): one graphic
   per model on a light readout card. */
.model_tabs {
  padding: 100px 0 120px;
  background: #ffffff;
}
.model_tabs * {
  color: inherit;
}
.model_tabs .container {
  max-width: 1280px;
}
.model_tabs__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #614efa;
}
.model_tabs__title {
  margin: 16px 0 0;
  font-family: "Plus Jakarta Sans";
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
}
.model_tabs__subtitle {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: #434351;
}
.model_tabs {
  /* ---- tabs ---- */
  /* One row that scrolls sideways rather than wrapping, so the tab strip
     stays a single line at every width. The scrollbar is hidden: on a phone
     it is a swipe, and on desktop the row fits without scrolling. */
}
.model_tabs__nav {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.model_tabs__nav::-webkit-scrollbar {
  display: none;
}
.model_tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Never shrink to fit the strip — the row scrolls instead. */
  flex: 0 0 auto;
  white-space: nowrap;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: #f1f1f3;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: #1a1a22;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.model_tabs__tab:hover {
  background: #e7e7ea;
}
.model_tabs__tab.is_active {
  background: #614efa;
  color: #ffffff;
}
.model_tabs__tab.is_active:hover {
  background: #5544dc;
}
.model_tabs__badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(97, 78, 250, 0.12);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #614efa;
}
.model_tabs__tab.is_active .model_tabs__badge {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.model_tabs {
  /* ---- panels ---- */
}
.model_tabs__panels {
  margin-top: 64px;
}
.model_tabs__panel {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 40px;
  align-items: center;
}
.model_tabs__panel[hidden] {
  display: none;
}
.model_tabs__model-title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1a1a22;
}
.model_tabs__model-desc {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: #434351;
}
.model_tabs__specs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.model_tabs__specs li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 26px;
  padding: 0 9px;
  border: 1px solid #e7e7ea;
  border-radius: 6px;
  background: #ffffff;
  /* base_new sets `body * { font-family: … !important }`. */
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 11px;
  line-height: 16px;
  white-space: nowrap;
  color: #434351;
}
.model_tabs__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.model_tabs__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: #1a1a22;
  text-decoration: none;
}
.model_tabs__cta--button {
  height: 44px;
  padding: 0 20px;
  border: 1.5px solid #1a1a22;
  border-radius: 10px;
}
.model_tabs__cta--button:hover {
  background: #1a1a22;
  color: #ffffff;
}
.model_tabs__cta--link:hover {
  color: #614efa;
}
.model_tabs {
  /* Readout card — the animated SVG export carries its own panel, label and
     note. Fixed 560x288, so switching tabs never changes the page height. */
}
.model_tabs__demo {
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 560/288;
  border: 0;
  pointer-events: none;
}

/* ---- responsive ---- */
@media screen and (max-width: 1280px) {
  .model_tabs .container {
    max-width: 100%;
  }
  /* Below the full measure the chip row is allowed to wrap again. */
  .model_tabs__specs {
    flex-wrap: wrap;
  }
  .model_tabs__panel {
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 32px;
  }
}
@media screen and (max-width: 1100px) {
  .model_tabs__panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .model_tabs {
    padding: 72px 0;
  }
  .model_tabs__title {
    font-size: 32px;
    line-height: 40px;
  }
  .model_tabs__subtitle {
    font-size: 15px;
  }
  .model_tabs__panels {
    margin-top: 40px;
  }
  .model_tabs__nav {
    gap: 6px;
  }
  .model_tabs__tab {
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }
  .model_tabs__model-title {
    font-size: 20px;
    line-height: 28px;
  }
  .model_tabs__model-desc {
    font-size: 15px;
  }
}
