/* Marketing chrome shares the app palette. Artwork belongs to each demo. */
:root {
  color-scheme: light;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial,
    'Noto Sans CJK SC', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --shadow: 0 28px 90px #00000012;
}
:root[data-theme='dark'] {
  color-scheme: dark;
  --shadow: 0 28px 90px #0004;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
.wrap {
  width: min(1200px, 100% - 96px);
  margin-inline: auto;
}
.muted,
.fineprint {
  color: var(--muted);
}
.fineprint {
  font-size: 12px;
  margin-top: 22px;
  line-height: 1.8;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -90px;
  padding: 12px 20px;
  background: var(--bg);
  z-index: 100;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.skip-link:focus {
  top: 12px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(16px)) {
  .nav {
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(16px);
  }
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.brand img {
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 18px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-links svg {
  display: none;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-button,
.language summary,
.mobile-menu summary {
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}
.icon-button:hover,
.language summary:hover {
  background: var(--raised);
}
.language,
.mobile-menu {
  position: relative;
}
.language summary,
.mobile-menu summary {
  list-style: none;
}
.language summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}
.language > div,
.mobile-menu > nav {
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 165px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.language a,
.mobile-menu nav a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
}
.language a:hover,
.language a[aria-current],
.mobile-menu nav a:hover {
  background: var(--raised);
}
.mobile-menu {
  display: none;
}
.button {
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button.primary {
  background: var(--fg);
  color: var(--bg);
}
.button.primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.button.secondary {
  border-color: var(--line);
  background: transparent;
}
.button.secondary:hover {
  background: var(--raised);
}
.nav .button {
  min-height: 36px;
  padding: 7px 18px;
  font-size: 12px;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.text-link:hover svg {
  transform: translateX(3px);
}
.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s;
}
.hero {
  text-align: center;
  padding: 55px 0 32px;
}
.model-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
}
.model-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.model-brand img {
  flex: none;
  object-fit: contain;
}
.model-pair-separator {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(48px, 6.1vw, 86px);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 1.18;
  margin: 23px auto 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--muted);
}
html[lang='en'] .hero h1 {
  font-weight: 450;
  line-height: 1.04;
  letter-spacing: -0.06em;
}
html[lang='en'] .hero h1 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--fg);
  font-weight: 400;
}
.hero-description {
  text-wrap: balance;
  font-size: 16px;
  max-width: 530px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.9;
}
.free-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
}
.hero-capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 26px;
}
.hero-capabilities a {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding-block: 5px;
  font-size: 11px;
  color: var(--muted);
}
.hero-capabilities strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.hero-capabilities a:hover,
.hero-capabilities a:hover strong {
  color: var(--accent);
}
.hero-showcase {
  padding-bottom: 25px;
}
.showcase-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.showcase-tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 11px 20px;
  border-radius: 24px;
  font-size: 13px;
  white-space: nowrap;
}
.showcase-tabs button span {
  font-size: 10px;
  margin-right: 9px;
  opacity: 0.65;
}
.showcase-tabs button[aria-selected='true'] {
  background: var(--raised);
  color: var(--fg);
}
.preview-screen {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.preview-screen > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
}
.preview-open {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 21px;
  border-radius: 30px;
  background: #ffffffeb;
  color: #20241e;
  border: 1px solid #fff6;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 25px #0002;
}
.preview-open svg {
  width: 16px;
  height: 16px;
}
.play-icon {
  font-size: 10px;
}
.preview-screen:hover .preview-open {
  background: #fff;
}
.showcase-caption {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-top: 25px;
}
.showcase-caption h2 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-top: 4px;
}
.showcase-caption > p {
  font-size: 13px;
  color: var(--muted);
  max-width: 390px;
  padding-top: 4px;
}
.demo-prompt {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 22px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.demo-prompt > span {
  font-size: 10px;
  white-space: nowrap;
  color: var(--muted);
}
.demo-prompt > p {
  font-size: 12px;
  color: var(--muted);
}
.section {
  padding-block: 92px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.section-heading h2,
.connected h2,
.faq-section h2,
.closing h2 {
  font-size: clamp(28px, 3vw, 41px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.3;
  margin: 10px 0 15px;
}
.section-heading p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 590px;
  line-height: 1.85;
}
.skills-section {
  padding-top: 75px;
}
.computer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 70px;
  padding-top: 100px;
  border-bottom: 1px solid var(--line);
}
.computer-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.3;
  margin: 12px 0 18px;
  text-wrap: balance;
}
.computer-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 410px;
}
.computer-benefits {
  display: grid;
  gap: 23px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.computer-benefits li {
  display: flex;
  align-items: start;
  gap: 14px;
}
.computer-benefits svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
}
.computer-benefits h3 {
  font-size: 14px;
  font-weight: 550;
  margin: 0 0 5px;
}
.computer-benefits p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.computer-demo {
  min-width: 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--raised);
}
.computer-request {
  display: flex;
  align-items: start;
  gap: 11px;
  padding: 0 5px 24px;
}
.computer-request svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
}
.computer-request p {
  font-size: 13px;
  line-height: 1.8;
}
.computer-window {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 10px 40px #00000007;
}
.computer-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.computer-window-bar svg {
  width: 14px;
  height: 14px;
  flex: none;
}
.computer-window-bar small {
  margin-left: auto;
  font-size: 9px;
}
.computer-panel {
  min-height: 323px;
  padding: 23px;
}
.computer-panel h3 {
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.computer-sites {
  display: grid;
  gap: 9px;
}
.computer-site {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.computer-site > img,
.computer-site > svg {
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
  border-radius: 5px;
}
.computer-site > svg:last-child {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--muted);
}
.computer-site strong,
.computer-site span {
  display: block;
  font-size: 11px;
}
.computer-site span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.computer-demo-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 15px;
}
.computer-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.computer-tabs button {
  padding: 16px 8px;
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1.5;
}
.computer-tabs button span {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  margin-bottom: 3px;
}
.computer-tabs button[aria-selected='true'] {
  background: var(--raised);
  color: var(--fg);
  box-shadow: inset 0 2px var(--fg);
}
.computer-result-icon svg,
.computer-control-icon svg {
  width: 30px;
  height: 30px;
}
.computer-result-icon {
  margin-bottom: 17px;
}
.computer-results {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.computer-results th,
.computer-results td {
  text-align: left;
  padding: 12px 5px;
  border-bottom: 1px solid var(--line);
}
.computer-results th {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.computer-control-panel {
  text-align: center;
}
.computer-control-icon {
  margin: 12px 0 23px;
}
.computer-control-panel h3 {
  margin-bottom: 14px;
}
.computer-control-panel > p {
  max-width: 310px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.computer-control-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  font-size: 11px;
}
.computer-control-flow svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}
.skill-filters {
  display: flex;
  gap: 8px;
  margin: 0 0 25px;
  overflow: auto;
  padding: 5px 0;
}
.skill-filters button {
  font-size: 12px;
  white-space: nowrap;
  padding: 9px 17px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.skill-filters button[aria-pressed='true'] {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.popular-skill {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  overflow: hidden;
}
.popular-skill summary {
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr 14px;
  gap: 14px;
  padding: 23px 20px;
  min-height: 182px;
  cursor: pointer;
}
.popular-skill summary::-webkit-details-marker {
  display: none;
}
.popular-skill summary:hover {
  background: var(--raised);
}
.skill-mark {
  width: 42px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 20px;
  letter-spacing: -1px;
  background: var(--raised);
  color: var(--fg);
}
.skill-mark-frontend-design {
  font-family: monospace;
  font-size: 17px;
}
.skill-summary {
  min-width: 0;
}
.skill-owner {
  display: block;
  font-size: 9px;
  color: var(--muted);
  overflow-wrap: anywhere;
  margin-bottom: 7px;
}
.skill-summary strong {
  display: block;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.5;
}
.skill-description {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.7;
}
.skill-expand {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}
.popular-skill[open] .skill-expand {
  transform: rotate(45deg);
}
.skill-detail {
  padding: 0 20px 20px;
}
.skill-detail .prompt {
  padding: 16px;
  border-radius: 11px;
}
.skill-detail .prompt p {
  font-size: 12px;
}
.skill-detail .prompt .eyebrow {
  font-size: 9px;
}
.skill-actions {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  margin-top: 16px;
}
.skill-actions a {
  font-size: 10px;
}
.skill-actions svg {
  width: 12px;
}
.skill-browser-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.skill-browser-footer p {
  font-size: 10px;
  color: var(--muted);
  max-width: 600px;
}
.work-section {
  background: var(--raised);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.project-image {
  display: block;
  border: 0;
  padding: 0;
  background: var(--bg);
  width: 100%;
  position: relative;
  border-radius: 13px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  aspect-ratio: 1.4;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}
.project-image:hover img {
  transform: scale(1.025);
}
.project-open {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  padding: 7px 11px;
  border-radius: 20px;
  background: #ffffffeb;
  color: #20241e;
}
.project-open svg {
  width: 12px;
  height: 12px;
}
.project-caption {
  padding: 18px 0 0;
}
.project-caption .eyebrow {
  font-size: 9px;
}
.project-caption h3 {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  margin: 6px 0 8px;
  letter-spacing: -0.025em;
}
.project-caption h3 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.project-caption h3 svg {
  width: 15px;
}
.project-caption p {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
.model-card {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}
.tier-label {
  font-size: 12px;
  font-weight: 550;
}
.model-card h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1.4;
  margin: 25px 0 16px;
  font-weight: 500;
}
.model-card h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.model-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.connected {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  border-top: 1px solid var(--line);
}
.connected p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.source-logo {
  flex: none;
  object-fit: contain;
}
.source-logo-xiaohongshu {
  border-radius: 6px;
}
.source-logo-dark,
:root[data-theme='dark'] .source-logo-github {
  display: none;
}
:root[data-theme='dark'] .source-logo-dark {
  display: block;
}
/* The full ecosystem stays browsable without overwhelming the first view. */
.ecosystem-section {
  padding-top: 72px;
}
.ecosystem-heading {
  max-width: 760px;
  margin-bottom: 35px;
}
.ecosystem-heading h2 {
  margin: 12px 0 17px;
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.25;
  text-wrap: balance;
}
.ecosystem-heading p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  text-wrap: pretty;
}
.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 35px;
  padding-block: 26px;
  border-block: 1px solid var(--line);
}
.ecosystem-stats a {
  display: grid;
  align-content: start;
  justify-items: start;
  padding-inline: 35px;
  border-left: 1px solid var(--line);
}
.ecosystem-stats a:first-child {
  padding-left: 0;
  border-left: 0;
}
.ecosystem-stats strong {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  transition: color 0.18s;
}
.ecosystem-stats a:hover strong {
  color: var(--accent);
}
.ecosystem-stats span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
.ecosystem-stats small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.connector-showcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.connector-feature {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  min-width: 0;
  padding: 23px 20px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.connector-feature:hover {
  background: var(--raised);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  transform: translateY(-3px);
}
.connector-logo {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  color: var(--fg);
  object-fit: contain;
  padding: 6px;
  border-radius: 9px;
}
.connector-logo img,
.connector-logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.connector-logo svg {
  fill: currentColor;
  stroke: none;
}
.connector-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.connector-feature small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.connection-directory {
  margin-top: 24px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.connection-directory > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 23px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.connection-directory > summary::-webkit-details-marker {
  display: none;
}
.connection-directory > summary b {
  display: inline-grid;
  place-items: center;
  min-width: 29px;
  padding: 2px 8px;
  border-radius: 14px;
  color: var(--muted);
  background: var(--raised);
  font-size: 10px;
  font-weight: 500;
}
.connection-directory > summary > svg {
  width: 17px;
  height: 17px;
  margin-left: auto;
  transition: transform 0.18s;
}
.connection-directory[open] > summary > svg {
  transform: rotate(180deg);
}
.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 4px 0 18px;
}
.directory-search {
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(100%, 370px);
  min-height: 45px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: var(--panel);
}
.directory-search:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.directory-search svg {
  width: 17px;
  height: 17px;
}
.directory-search input {
  width: 100%;
  min-width: 0;
  padding: 11px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fg);
  font-size: 12px;
}
.directory-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.directory-count,
.directory-note,
.directory-empty {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.directory-filters button {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.directory-filters button:hover {
  color: var(--fg);
  background: var(--raised);
}
.directory-filters button[aria-pressed='true'] {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}
.connection-group {
  margin-bottom: 27px;
}
.connection-group h3 {
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.connection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.connection-item {
  min-width: 0;
}
.connection-card {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  min-height: 80px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.connection-card:hover {
  background: var(--raised);
}
.connection-card .connector-logo {
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 7px;
}
.connection-card > span:not(.connector-logo) {
  min-width: 0;
}
.connection-card strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.connection-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  margin-top: 3px;
}
.connection-card > svg:last-child {
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: var(--muted);
}
.directory-empty {
  padding: 20px 0 35px;
}
.directory-note {
  margin: 24px 0;
  max-width: 720px;
}
/* A concrete path from connected sources to a finished deliverable. */
.workflow-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.workflow-studio {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg);
}
.workflow-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.workflow-picker button {
  display: flex;
  align-items: start;
  gap: 13px;
  width: 100%;
  padding: 19px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  transition: background 0.18s, border-color 0.18s;
}
.workflow-picker button:hover {
  background: var(--panel);
}
.workflow-picker button[aria-selected='true'] {
  background: var(--panel);
  border-color: var(--line);
}
.workflow-number {
  padding-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.workflow-picker button[aria-selected='true'] .workflow-number {
  color: var(--accent);
}
.workflow-picker strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.6;
}
.workflow-picker small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.workflow-panel {
  min-width: 0;
  padding: 34px;
}
.workflow-panel-head .eyebrow {
  color: var(--accent);
}
.workflow-picker[hidden] ~ .workflow-panel {
  grid-column: 1 / -1;
}
.workflow-panel-head h3 {
  margin: 10px 0 12px;
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-wrap: balance;
}
.workflow-panel-head p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 600px;
}
.workflow-nodes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: 34px 0 25px;
  padding: 0;
  list-style: none;
}
.workflow-nodes li {
  position: relative;
  min-width: 0;
  padding: 18px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.workflow-nodes li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 100%;
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.node-index {
  position: absolute;
  top: 18px;
  right: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.node-symbol {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg);
  color: var(--accent);
}
.node-symbol svg {
  width: 18px;
  height: 18px;
}
.workflow-nodes h4 {
  margin: 16px 0 6px;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.5;
}
.workflow-nodes p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.workflow-deliverable {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 21px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 4%, var(--bg));
}
.deliverable-format {
  display: grid;
  place-items: center;
  width: 45px;
  height: 55px;
  flex: none;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 5px 13px 5px 5px;
  background: var(--bg);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.workflow-deliverable h4 {
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
}
.workflow-deliverable p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.workflow-deliverable > svg {
  width: 21px;
  height: 21px;
  margin-left: auto;
  color: var(--accent);
}
.workflow-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.workflow-panel-footer small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}
.workflow-panel-footer .text-link {
  font-size: 12px;
}
.workflow-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 33px;
}
.workflow-notes article {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  column-gap: 12px;
  align-content: start;
}
.workflow-notes svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.workflow-notes h3 {
  font-size: 13px;
  font-weight: 550;
}
.workflow-notes p {
  grid-column: 2;
  margin-top: 7px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.device-icons {
  display: flex;
  gap: 15px;
  color: var(--muted);
  margin-bottom: 25px;
}
.device-icons svg {
  width: 25px;
  height: 25px;
}
.device-card .text-link {
  margin-top: 20px;
}
.device-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 25px;
}
.pricing-section {
  background: var(--raised);
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  background: var(--bg);
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.price {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -2px;
  margin-top: 23px;
}
.price small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 4px;
}
.plan p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.storage {
  display: block;
  font-size: 12px;
  margin-top: 20px;
}
.plan .button {
  width: 100%;
  margin-top: 22px;
  min-height: 40px;
  font-size: 12px;
  padding-inline: 12px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 65px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--muted);
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 21px;
  line-height: 1.9;
}
.closing {
  text-align: center;
  padding: 70px 0 95px;
}
.closing img {
  border-radius: 14px;
  margin: 0 auto 22px;
}
.closing p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
}
.closing h2 {
  font-size: 42px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 55px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin: 15px 0 25px;
}
.footer-brand .muted {
  font-size: 11px;
}
footer h3 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .footer-grid > div:not(.footer-brand) > a {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
footer .text-link svg {
  display: none;
}
.footer-language {
  margin-top: 28px;
}
.preview-dialog {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  color: var(--fg);
  width: min(1440px, calc(100vw - 48px));
  height: min(900px, 92svh);
  max-width: none;
  max-height: 92svh;
  box-shadow: 0 30px 100px #0005;
  overflow: hidden;
}
.preview-dialog::backdrop {
  background: #151a18a8;
  backdrop-filter: blur(7px);
}
.preview-toolbar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.preview-toolbar > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-toolbar a {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 11px;
}
.preview-toolbar a svg {
  width: 14px;
}
.preview-toolbar button {
  border: 0;
  background: var(--raised);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-size: 23px;
  line-height: 1;
}
.preview-dialog #preview-content {
  position: relative;
  height: calc(100% - 58px);
}
.preview-dialog iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--raised);
}
.preview-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
}
body.preview-opened {
  overflow: hidden;
}
/* Crawlable feature pages use the same layout and controls. */
.feature-main {
  padding-top: 30px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
}
.feature-intro {
  padding: 65px 0 50px;
  max-width: 800px;
}
.feature-intro h1 {
  font-size: clamp(36px, 4.7vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.055em;
  margin: 16px 0 23px;
}
.feature-intro > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 720px;
}
.feature-intro .actions {
  justify-content: start;
  margin-top: 28px;
}
.feature-preview {
  margin: 10px 0 45px;
}
.feature-preview img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.feature-preview figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.feature-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 55px;
}
.feature-body h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 25px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 20px;
  margin: 0 0 24px;
}
.step-number {
  font-size: 11px;
  color: var(--muted);
  padding-top: 4px;
}
.steps p,
.benefits li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.benefits {
  padding-left: 18px;
}
.benefits li {
  padding-left: 8px;
  margin-bottom: 18px;
}
.prompt {
  background: var(--raised);
  border: 1px solid var(--line);
  padding: 23px;
  border-radius: 15px;
  margin-top: 28px;
}
.prompt p {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 13px;
}
.copy-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  border: 0;
  background: var(--bg);
  padding: 8px 13px;
  border-radius: 20px;
  margin-top: 17px;
}
.copy-prompt svg {
  width: 13px;
  height: 13px;
}
.copy-status {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
}
.copy-status:empty {
  display: none;
}
.related {
  padding: 45px 0 70px;
  border-top: 1px solid var(--line);
}
.related h2 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 25px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-grid a {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 13px;
  font-size: 13px;
}
.related-grid a svg:last-child {
  margin-left: auto;
  width: 15px;
}
/* Connector and skill detail pages (generated from the catalogs). */
.seo-section {
  padding-top: 30px;
}
.seo-section h2 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px;
}
.seo-section + .fineprint {
  margin-top: 30px;
}
.seo-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-eyebrow .connector-logo {
  width: 26px;
  height: 26px;
  padding: 4px;
  border-radius: 7px;
}
.connection-card .seo-skill-mark {
  background: var(--raised);
  color: var(--fg);
  font-size: 11px;
  font-weight: 600;
}
.seo-facts {
  display: grid;
  gap: 12px;
  margin: 10px 0 24px;
  font-size: 13px;
}
.seo-facts div {
  display: flex;
  gap: 16px;
}
.seo-facts dt {
  flex: none;
  width: 90px;
  color: var(--muted);
}
.seo-facts dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.seo-facts a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
}
.download-card h3 {
  font-size: 15px;
  font-weight: 500;
}
.download-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.download-card > svg:last-child {
  margin-left: auto;
  width: 16px;
}
@media (min-width: 761px) {
  html:not([lang='en']) .hero h1 br {
    display: none;
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 72px;
  }
  .hero-showcase {
    width: min(1320px, 100% - 120px);
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 20px;
    margin-right: 4px;
  }
  .nav-inner {
    gap: 18px;
  }
  .hero {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .connector-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .connection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .workflow-studio {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .workflow-picker {
    padding: 16px;
  }
  .workflow-picker button {
    padding: 16px 12px;
    gap: 10px;
  }
  .workflow-panel {
    padding: 28px;
  }
  .workflow-nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workflow-nodes li:nth-child(2)::after {
    display: none;
  }
  .workflow-nodes li {
    padding-right: 27px;
  }
  .workflow-nodes h4 {
    margin-top: 12px;
  }
  .workflow-panel-footer {
    flex-wrap: wrap;
    gap: 12px;
  }
  .popular-skill summary {
    min-height: 165px;
  }
  .connected {
    gap: 50px;
  }
  .plans {
    gap: 12px;
  }
  .plan {
    padding: 23px 18px;
  }
  .price {
    font-size: 33px;
  }
  .section {
    padding-block: 75px;
  }
  .faq-section {
    gap: 40px;
  }
  .model-card h3 {
    font-size: 17px;
  }
  .project-grid {
    gap: 20px;
  }
  .project-caption h3 {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-inner {
    height: 64px;
    gap: 12px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 3px;
    margin-left: auto;
  }
  .nav .button {
    font-size: 11px;
    padding: 7px 12px;
  }
  .brand {
    font-size: 16px;
    gap: 7px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .icon-button,
  .language summary,
  .mobile-menu summary {
    width: 31px;
    height: 31px;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    padding: 52px 0 34px;
  }
  .model-label {
    font-size: 11px;
    gap: 10px;
    padding: 5px 11px;
  }
  .hero-capabilities {
    gap: 5px 17px;
    margin-top: 22px;
  }
  .hero-capabilities a {
    gap: 5px;
    font-size: 10px;
  }
  .hero-capabilities strong {
    font-size: 12px;
  }
  .ecosystem-heading {
    margin-bottom: 26px;
  }
  .ecosystem-heading h2 {
    font-size: 32px;
    margin: 10px 0 15px;
  }
  .ecosystem-heading p:not(.eyebrow) {
    font-size: 12px;
  }
  .ecosystem-stats {
    padding-block: 23px;
    margin-bottom: 24px;
  }
  .ecosystem-stats a {
    padding-inline: 17px;
  }
  .ecosystem-stats a:last-child {
    padding-right: 0;
  }
  .ecosystem-stats strong {
    font-size: clamp(25px, 6.7vw, 38px);
  }
  .ecosystem-stats span {
    font-size: 11px;
    margin-top: 7px;
  }
  .ecosystem-stats small {
    font-size: 9px;
    line-height: 1.65;
  }
  .connector-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }
  .connector-feature {
    padding: 17px 13px 15px;
    gap: 13px;
    border-radius: 12px;
  }
  .connector-feature strong {
    font-size: 11px;
  }
  .connector-feature small {
    font-size: 9px;
  }
  .connector-logo {
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 8px;
  }
  .connection-directory {
    margin-top: 15px;
  }
  .connection-directory > summary {
    padding: 16px 0 20px;
    font-size: 12px;
  }
  .directory-toolbar {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }
  .directory-search {
    width: 100%;
  }
  .directory-search input {
    font-size: 16px;
  }
  .directory-search input::placeholder {
    font-size: 12px;
  }
  .directory-count {
    font-size: 10px;
  }
  .directory-filters {
    gap: 6px;
    margin-bottom: 23px;
  }
  .directory-filters button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 10px;
  }
  .connection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .connection-card {
    min-height: 80px;
    gap: 10px;
    padding: 13px 11px;
  }
  .connection-card .connector-logo {
    width: 24px;
    height: 24px;
    padding: 3px;
    border-radius: 6px;
  }
  .connection-card strong {
    font-size: 11px;
  }
  .connection-card small {
    font-size: 9px;
  }
  .connection-card > svg:last-child {
    display: none;
  }
  .directory-note {
    font-size: 10px;
  }
  .workflow-section .section-heading {
    flex-direction: column;
    gap: 12px;
  }
  .workflow-studio {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 18px;
  }
  .workflow-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-picker button {
    display: block;
    padding: 11px 10px;
    border-radius: 10px;
  }
  .workflow-number {
    display: block;
    padding-top: 0;
    margin-bottom: 6px;
    font-size: 9px;
  }
  .workflow-picker strong {
    font-size: 11px;
    line-height: 1.6;
  }
  .workflow-picker small {
    display: none;
  }
  .workflow-panel {
    padding: 25px 20px;
  }
  .workflow-panel-head h3 {
    font-size: 24px;
    margin: 10px 0 12px;
  }
  .workflow-panel-head p:not(.eyebrow) {
    font-size: 11px;
  }
  .workflow-nodes {
    gap: 12px;
    margin: 25px 0 20px;
  }
  .workflow-nodes li {
    padding: 16px 12px;
  }
  .workflow-nodes li:not(:last-child)::after {
    width: 13px;
    top: 40px;
  }
  .node-index {
    top: 17px;
    right: 11px;
  }
  .workflow-nodes h4 {
    font-size: 11px;
  }
  .workflow-nodes p {
    font-size: 9px;
  }
  .workflow-deliverable {
    gap: 12px;
    padding: 17px 14px;
  }
  .deliverable-format {
    width: 37px;
    height: 47px;
    font-size: 9px;
  }
  .workflow-deliverable h4 {
    font-size: 12px;
  }
  .workflow-deliverable p {
    font-size: 10px;
  }
  .workflow-deliverable > svg {
    display: none;
  }
  .workflow-panel-footer {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }
  .workflow-panel-footer small {
    font-size: 9px;
  }
  .workflow-notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 23px;
    margin-top: 27px;
  }
  .workflow-notes h3 {
    font-size: 12px;
  }
  .workflow-notes p {
    margin-top: 5px;
    font-size: 11px;
  }
  .computer-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
    padding-top: 60px;
  }
  .computer-copy h2 {
    font-size: 32px;
  }
  .computer-demo {
    padding: 17px;
    border-radius: 18px;
  }
  .computer-request {
    padding: 0 0 18px;
  }
  .computer-request p {
    font-size: 12px;
  }
  .computer-panel {
    padding: 18px 14px;
    min-height: 331px;
  }
  .computer-window-bar {
    padding: 13px 12px;
    gap: 6px;
  }
  .computer-window-bar span {
    font-size: 10px;
  }
  .computer-window-bar small {
    font-size: 8px;
  }
  .computer-site {
    padding: 11px;
    gap: 10px;
  }
  .computer-tabs button {
    font-size: 10px;
    padding: 13px 4px;
  }
  .hero h1 {
    font-size: 57px;
    letter-spacing: -0.06em;
    margin: 24px auto 19px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 390px;
    line-height: 1.9;
  }
  .hero .button {
    font-size: 12px;
    min-height: 43px;
    padding: 10px 19px;
  }
  .free-note {
    font-size: 10px;
  }
  .showcase-tabs {
    gap: 2px;
    margin-bottom: 15px;
  }
  .showcase-tabs button {
    padding: 9px 15px;
    font-size: 11px;
  }
  .showcase-tabs button span {
    font-size: 8px;
    margin-right: 6px;
  }
  .preview-screen {
    border-radius: 13px;
  }
  .preview-open {
    bottom: 13px;
    padding: 9px 14px;
    font-size: 10px;
    gap: 8px;
  }
  .preview-open svg {
    width: 12px;
    height: 12px;
  }
  .showcase-caption {
    gap: 12px;
    margin-top: 20px;
  }
  .showcase-caption h2 {
    font-size: 16px;
  }
  .showcase-caption .eyebrow {
    font-size: 9px;
  }
  .showcase-caption > p {
    font-size: 11px;
    max-width: 43%;
  }
  .demo-prompt {
    margin-top: 17px;
    padding: 13px 0;
    gap: 12px;
  }
  .demo-prompt p {
    font-size: 10px;
  }
  .demo-prompt > span {
    font-size: 9px;
  }
  .section {
    padding-block: 57px;
  }
  .section-heading {
    margin-bottom: 26px;
    align-items: start;
  }
  .section-heading h2,
  .connected h2,
  .faq-section h2 {
    font-size: 29px;
    margin: 9px 0 14px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.9;
  }
  .popular-grid {
    gap: 12px;
  }
  .popular-skill summary {
    padding: 18px 15px;
    grid-template-columns: 36px 1fr 10px;
    gap: 10px;
    min-height: 170px;
  }
  .skill-mark {
    width: 35px;
    height: 37px;
    font-size: 18px;
  }
  .skill-summary strong {
    font-size: 13px;
  }
  .skill-description {
    font-size: 11px;
  }
  .skill-owner {
    font-size: 8px;
  }
  .skill-filters {
    gap: 6px;
    margin-bottom: 18px;
  }
  .skill-filters button {
    font-size: 11px;
    padding: 8px 13px;
  }
  .skill-browser-footer {
    align-items: start;
  }
  .skill-browser-footer p {
    font-size: 9px;
    max-width: 65%;
  }
  .skill-browser-footer a {
    font-size: 11px;
  }
  .skill-detail {
    padding: 0 15px 15px;
  }
  .skill-actions {
    flex-wrap: wrap;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-image img {
    aspect-ratio: 1.65;
  }
  .project-caption h3 {
    font-size: 19px;
  }
  .project-caption p {
    font-size: 12px;
  }
  .model-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .model-card {
    padding: 20px 0;
  }
  .model-card h3 {
    font-size: 22px;
    margin: 15px 0;
  }
  .model-card p {
    max-width: 500px;
  }
  .connected {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .connected p {
    font-size: 13px;
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .plan {
    padding: 23px 20px;
  }
  .price {
    font-size: 36px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq summary {
    font-size: 13px;
  }
  .closing {
    padding: 35px 0 70px;
  }
  .closing h2 {
    font-size: 32px;
  }
  .closing p {
    font-size: 12px;
  }
  .closing .button {
    min-height: 43px;
    font-size: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand p {
    margin: 13px 0;
  }
  .footer-brand .muted {
    font-size: 10px;
  }
  .feature-intro {
    padding: 42px 0;
  }
  .feature-intro h1 {
    font-size: 40px;
  }
  .feature-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .feature-body {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 35px;
  }
  .related-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .related-grid a,
  .download-card {
    padding: 17px 14px;
    gap: 10px;
    font-size: 12px;
  }
  .download-card h3 {
    font-size: 13px;
  }
  .download-card p {
    font-size: 10px;
  }
  .preview-dialog {
    width: calc(100vw - 16px);
    height: 94svh;
    max-height: 94svh;
    border-radius: 12px;
  }
  .preview-toolbar {
    padding: 0 12px;
    height: 52px;
    gap: 10px;
  }
  .preview-toolbar > span {
    font-size: 10px;
  }
  .preview-toolbar a {
    font-size: 9px;
  }
  .preview-dialog #preview-content {
    height: calc(100% - 52px);
  }
}
@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 50px;
  }
  html[lang='en'] .hero h1 {
    font-size: 53px;
  }
  .hero-description {
    max-width: 310px;
  }
  .showcase-tabs button {
    padding: 9px 11px;
  }
  .showcase-caption {
    display: block;
  }
  .showcase-caption > p {
    max-width: none;
    margin-top: 10px;
    font-size: 12px;
  }
  .demo-prompt {
    align-items: start;
  }
  .popular-grid {
    grid-template-columns: 1fr;
  }
  .popular-skill summary {
    min-height: 128px;
    grid-template-columns: 42px 1fr 14px;
    padding: 20px;
    gap: 14px;
  }
  .skill-mark {
    width: 42px;
    height: 44px;
    font-size: 20px;
  }
  .skill-summary strong {
    font-size: 15px;
  }
  .skill-description {
    font-size: 12px;
  }
  .skill-owner {
    font-size: 9px;
  }
  .skill-filters button {
    padding: 8px 11px;
    font-size: 10px;
  }
  .skill-browser-footer {
    display: block;
  }
  .skill-browser-footer p {
    max-width: none;
    margin-bottom: 13px;
  }
  .skill-detail {
    padding: 0 20px 20px;
  }
  .plans {
    gap: 9px;
  }
  .plan {
    padding: 20px 16px;
  }
  .price {
    font-size: 32px;
  }
  .plan p {
    font-size: 10px;
  }
  .plan .button {
    font-size: 11px;
  }
  .section-heading h2,
  .connected h2,
  .faq-section h2 {
    font-size: 27px;
  }
  .related-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }
  .feature-intro h1 {
    font-size: 35px;
  }
  .brand {
    font-size: 15px;
  }
  .nav-actions {
    gap: 0;
  }
  .nav .button {
    padding-inline: 10px;
  }
  .nav-inner {
    gap: 5px;
  }
}
@media (max-width: 380px) {
  .hero-capabilities {
    gap: 4px 12px;
  }
  .ecosystem-stats a {
    padding-inline: 10px;
  }
  .ecosystem-stats strong {
    font-size: 23px;
  }
  .connector-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workflow-picker {
    gap: 3px;
    padding: 9px;
  }
  .workflow-picker button {
    padding-inline: 8px;
  }
  .workflow-panel {
    padding-inline: 15px;
  }
  .workflow-panel-head h3 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
