html[data-theme="dark"] body.home-page .home-hero-chip,
body.home-page[data-theme="dark"] .home-hero-chip {
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] body.home-page a.home-hero-chip:hover,
body.home-page[data-theme="dark"] a.home-hero-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] body.home-page .home-showcase-tile,
body.home-page[data-theme="dark"] .home-showcase-tile {
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] body.home-page .home-showcase-is-loading::before,
body.home-page[data-theme="dark"] .home-showcase-is-loading::before {
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 72%),
    rgba(255, 255, 255, 0.07);
  background-size: 220% 100%, 100% 100%;
}

html[data-theme="dark"] body.home-page .home-studio-plate-media,
body.home-page[data-theme="dark"] .home-studio-plate-media {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] body.home-page .home-studio-plate-image-light,
body.home-page[data-theme="dark"] .home-studio-plate-image-light {
  display: none;
}

html[data-theme="dark"] body.home-page .home-studio-plate-image-dark,
body.home-page[data-theme="dark"] .home-studio-plate-image-dark {
  display: block;
}

html[data-theme="dark"] body.home-page .home-capabilities-menu-link.is-active,
body.home-page[data-theme="dark"] .home-capabilities-menu-link.is-active {
  background: rgba(255, 255, 255, 0.07);
}

@media (hover: hover) {
html[data-theme="dark"] body.home-page .home-capabilities-menu-link:hover,
  body.home-page[data-theme="dark"] .home-capabilities-menu-link:hover {
    background: rgba(255, 255, 255, 0.07);
  }
}

html[data-theme="dark"] body.home-page .home-capability-card,
body.home-page[data-theme="dark"] .home-capability-card {
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] body.home-page .home-api-metrics span,
body.home-page[data-theme="dark"] .home-api-metrics span {
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] body.home-page .home-api-code-card,
body.home-page[data-theme="dark"] .home-api-code-card {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.07);
}

html[data-theme="dark"] body.home-page .home-api-code-header,
body.home-page[data-theme="dark"] .home-api-code-header {
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] body.home-page .home-api-tab.is-active,
body.home-page[data-theme="dark"] .home-api-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] body.home-page .home-api-code-panel,
body.home-page[data-theme="dark"] .home-api-code-panel {
  color: rgba(255, 255, 255, 0.78);
}

html[data-theme="dark"] body.home-page .home-api-token-command,
body.home-page[data-theme="dark"] .home-api-token-command {
  color: #7aa2ff;
}

html[data-theme="dark"] body.home-page .home-api-token-flag,
html[data-theme="dark"] body.home-page .home-api-token-key,
body.home-page[data-theme="dark"] .home-api-token-flag,
body.home-page[data-theme="dark"] .home-api-token-key {
  color: #c4a5ff;
}

html[data-theme="dark"] body.home-page .home-api-token-string,
body.home-page[data-theme="dark"] .home-api-token-string {
  color: #67dca8;
}

html[data-theme="dark"] body.home-page .home-api-token-bool,
body.home-page[data-theme="dark"] .home-api-token-bool {
  color: #f8c572;
}

html[data-theme="dark"] body.home-page .home-api-token-env,
body.home-page[data-theme="dark"] .home-api-token-env {
  color: #ff8d8d;
}

.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 36px;
  text-align: center;
}

.home-hero-title {
  max-width: 1280px;
  margin: 0;
  color: inherit;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

.home-hero-subtitle {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.7;
  transform: translateY(-2px);
}

.home-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}

.home-hero-chip {
  display: flex;
  min-width: 0;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(16, 16, 16, 0.07);
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    opacity 0.15s ease;
}

a.home-hero-chip:hover {
  background: rgba(16, 16, 16, 0.12);
}

.home-hero-chip-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.home-hero-chip-icon-mask {
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.home-hero-chip-icon-byte {
  mask-image: url("/static/img/byte.svg");
}

.home-hero-chip-icon-gpt {
  mask-image: url("/static/img/ChatGPT-Logo.svg");
}

.home-hero-chip-icon-elevenlabs {
  mask-image: url("/static/img/elevenlabs-logo.svg");
}

.home-hero-chip-icon-runway {
  mask-image: url("/static/img/runway.svg");
}

.home-hero-chip-icon-kling {
  mask-image: url("/static/img/kling.svg");
}

.home-hero-chip-text {
  transform: translateY(-1px);
}

.home-hero-button {
  display: inline-flex;
  width: 200px;
  min-width: 200px;
  height: 45px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-radius: 999px;
  background: #2557fe;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.home-hero-button span {
  transform: translateY(-1px);
}

.home-showcase {
  padding-top: 35px;
}

.home-showcase-grid {
  position: relative;
  aspect-ratio: 1864.225 / 1000;
}

.home-showcase-bottom-row {
  display: contents;
}

.home-showcase-tile {
  position: absolute;
  overflow: hidden;
  min-width: 0;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.07);
}

.home-showcase-tile-primary {
  top: 0;
  left: 0;
  width: 35.705186%;
  height: 100%;
}

.home-showcase-grid > .home-showcase-empty:nth-of-type(2) {
  top: 0;
  left: 36.778018%;
  width: 20.383806%;
  height: 38%;
}

.home-showcase-tile-motion {
  top: 62%;
  left: 36.778018%;
  width: 20.383806%;
  height: 38%;
}

.home-showcase-grid > .home-showcase-empty:nth-of-type(3) {
  top: 0;
  left: 58.234655%;
  width: 13.946814%;
  height: 38%;
}

.home-showcase-tile-character {
  top: 62%;
  left: 58.234655%;
  width: 13.946814%;
  height: 38%;
}

.home-showcase-tile-video {
  top: 62%;
  left: 73.254301%;
  width: 26.745699%;
  height: 38%;
}

.home-showcase-tile-wide {
  top: 0;
  left: 36.778018%;
  width: 28.966461%;
  height: 60%;
}

.home-showcase-tile-extra-wide {
  top: 0;
  left: 66.817310%;
  width: 33.182690%;
  height: 60%;
}

.home-showcase-media-tile {
  background: #101010;
}

.home-showcase-is-loading::before {
  position: absolute;
  inset: 0;
  z-index: 20;
  content: "";
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 72%),
    #f0f1f3;
  background-size: 220% 100%, 100% 100%;
  animation: home-showcase-loading 1.15s ease-in-out infinite;
}

.home-showcase-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-showcase-motion-video {
  object-position: center center;
}

.home-showcase-compare {
  --compare-x: 100%;
  --compare-badge-x: 100%;
  --compare-badge-opacity: 0;
}

.home-showcase-compare-after-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(var(--compare-x) 0, 100% 0, 100% 100%, var(--compare-x) 100%);
  transition: clip-path 180ms ease;
}

.home-showcase-compare-after {
  position: absolute;
  inset: 0;
}

.home-showcase-compare-badge {
  position: absolute;
  top: clamp(5px, 1.4cqw, 18px);
  right: clamp(5px, 1.4cqw, 18px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: clamp(3px, 0.62cqw, 8px) clamp(5px, 1cqw, 13px) clamp(4px, 0.7cqw, 9px);
  background: rgba(255, 255, 255, 0.88);
  color: #101010;
  font-size: clamp(7px, 1cqw, 13px);
  font-weight: 500;
  line-height: 1;
  clip-path: polygon(var(--compare-badge-x) 0, 100% 0, 100% 100%, var(--compare-badge-x) 100%);
  opacity: var(--compare-badge-opacity);
  pointer-events: none;
  transition: clip-path 120ms ease, opacity 120ms ease;
}

.home-showcase-compare.is-compare-active .home-showcase-compare-after-layer {
  transition: none;
}

.home-showcase-compare.is-compare-active .home-showcase-compare-badge {
  transition: none;
}

.home-showcase-auto-compare .home-showcase-compare-after-layer {
  transition: clip-path 520ms ease;
}

.home-showcase-auto-compare .home-showcase-compare-badge {
  transition: clip-path 360ms ease, opacity 360ms ease;
}

.home-showcase-character {
  --character-f2-x: 100%;
  --character-f1-x: 100%;
  --character-f2-opacity: 1;
  --character-f1-opacity: 1;
}

.home-showcase-character-image {
  position: absolute;
  inset: 0;
}

.home-showcase-character-image-base {
  position: relative;
}

.home-showcase-character-image-2 {
  clip-path: polygon(var(--character-f2-x) 0, 100% 0, 100% 100%, var(--character-f2-x) 100%);
  opacity: var(--character-f2-opacity);
  transition: clip-path 780ms ease;
}

.home-showcase-character-image-1 {
  clip-path: polygon(var(--character-f1-x) 0, 100% 0, 100% 100%, var(--character-f1-x) 100%);
  opacity: var(--character-f1-opacity);
  transition: clip-path 780ms ease;
}

.home-showcase-character.is-character-manual .home-showcase-character-image-2,
.home-showcase-character.is-character-manual .home-showcase-character-image-1 {
  clip-path: none;
  transition: opacity 160ms ease;
}

.home-showcase-compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-x);
  z-index: 4;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(16, 16, 16, 0.18), 0 0 18px rgba(255, 255, 255, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-1px);
  transition: left 180ms ease, opacity 120ms ease;
}

.home-showcase-compare.is-compare-active .home-showcase-compare-line {
  opacity: 1;
  transition: opacity 120ms ease;
}

.home-showcase-compare.is-compare-mobile-active .home-showcase-compare-line {
  opacity: 1;
}

.home-showcase-r-model {
  --r3-opacity: 0;
  --r2-opacity: 0;
  --r1-opacity: 0;
}

.home-showcase-r-image {
  position: absolute;
  inset: 0;
}

.home-showcase-r-image-base {
  position: relative;
}

.home-showcase-r-image-3 {
  opacity: var(--r3-opacity);
}

.home-showcase-r-image-2 {
  opacity: var(--r2-opacity);
}

.home-showcase-r-image-1 {
  opacity: var(--r1-opacity);
}

.home-showcase-r-model.is-r-mobile-active .home-showcase-r-image {
  transition: opacity 180ms ease;
}

.home-showcase-r-thumbs {
  position: absolute;
  top: clamp(5px, 1.4cqw, 18px);
  right: clamp(5px, 1.4cqw, 18px);
  z-index: 3;
  display: flex;
  gap: clamp(2px, 0.55cqw, 7px);
}

.home-showcase-r-thumb {
  width: clamp(8px, 3.1cqw, 40px);
  height: clamp(8px, 3.1cqw, 40px);
  box-sizing: border-box;
  border: clamp(1px, 0.16cqw, 2px) solid rgba(255, 255, 255, 0.36);
  border-radius: clamp(2px, 0.55cqw, 7px);
  object-fit: cover;
  opacity: 0.72;
  transition: border-color 120ms ease, opacity 120ms ease, transform 120ms ease;
}

.home-showcase-r-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  transform: translateY(-1px);
}

.home-showcase-r-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: clamp(3px, 0.62cqw, 8px) clamp(5px, 1cqw, 13px) clamp(4px, 0.7cqw, 9px);
  background: rgba(255, 255, 255, 0.88);
  color: #101010;
  filter: blur(8px);
  font-size: clamp(7px, 1cqw, 13px);
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
  transform-origin: center;
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.home-showcase-r-model.is-r-source-active .home-showcase-r-badge {
  filter: blur(0);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-showcase-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  min-height: clamp(24px, 8cqw, 112px);
  align-items: flex-end;
  box-sizing: border-box;
  padding: clamp(6px, 2.2cqw, 34px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  color: #ffffff;
}

.home-showcase-r-model .home-showcase-caption {
  padding: clamp(4.2px, 1.54cqw, 23.8px);
}

.home-showcase-title {
  margin: 0;
  font-size: clamp(8px, 1.5cqw, 24px);
  font-weight: 500;
  line-height: 1.08;
  transform: translateY(clamp(2px, 0.55cqw, 7px));
}

.home-studio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-top: 72px;
  text-align: center;
}

.home-studio .home-section-title {
  margin-bottom: 0;
}

.home-studio-plate {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  color: inherit;
  text-decoration: none;
}

.home-studio-plate-copy {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.7;
  text-wrap: balance;
  transform: translateY(-2px);
}

.home-studio-plate-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1272 / 690;
  box-shadow: 0 10px 28px rgba(16, 16, 16, 0.1);
}

.home-studio-plate-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.home-studio-plate-image-dark {
  display: none;
}

.home-capabilities {
  --home-capabilities-menu-top: 98px;
  padding-top: 96px;
}

.home-section-title {
  margin: 0 0 44px;
  color: inherit;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

.home-capabilities-layout {
  display: grid;
  grid-template-columns: minmax(114px, 15%) 1fr;
  gap: 40px;
  align-items: start;
}

.home-capabilities-menu {
  position: sticky;
  top: var(--home-capabilities-menu-top);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
  border-radius: 8px;
  transition: background 140ms ease, box-shadow 140ms ease, padding 140ms ease, transform 140ms ease;
}

.home-capabilities.is-measuring .home-capabilities-menu {
  position: static;
  transform: none;
}

.home-capabilities.is-capabilities-menu-stuck .home-capabilities-menu {
  padding: 8px 0;
  background: var(--home-bg-color);
  box-shadow: 0 0 0 8px var(--home-bg-color);
  transform: translateY(-26px);
}

.home-capabilities-menu-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0 18px;
  background: transparent;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  opacity: 0.58;
  transition: background 140ms ease, font-size 140ms ease, min-height 140ms ease, opacity 140ms ease;
}

.home-capabilities-menu-link.is-active {
  background: rgba(16, 16, 16, 0.07);
  opacity: 1;
}

@media (hover: hover) {
.home-capabilities-menu-link:hover {
    background: rgba(16, 16, 16, 0.07);
    opacity: 1;
  }
}

.home-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-capabilities-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 28px;
}

.home-capability-section {
  scroll-margin-top: calc(var(--home-capabilities-menu-top) + 16px);
}

.home-capability-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 0;
  box-sizing: border-box;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.07);
  color: inherit;
}

.home-capability-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-capability-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: clamp(14px, 2cqw, 24px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: #ffffff;
}

.home-capability-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: inherit;
  font-size: clamp(18px, 2cqw, 28px);
  font-weight: 500;
  line-height: 1.08;
}

.home-capability-card-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.home-capability-card-lucide-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.home-capability-card-icon-gpt {
  mask-image: url("/static/img/ChatGPT-Logo.svg");
}

.home-capability-card-icon-flux {
  mask-image: url("/static/img/flux.svg");
}

.home-capability-card-icon-byte {
  mask-image: url("/static/img/byte.svg");
}

.home-capability-card-icon-kling {
  mask-image: url("/static/img/kling.svg");
}

.home-capability-card-icon-runway {
  mask-image: url("/static/img/runway.svg");
}

.home-capability-card-icon-elevenlabs {
  mask-image: url("/static/img/elevenlabs-logo.svg");
}

.home-capability-card-icon-minimax {
  mask-image: url("/static/img/minimax-color.svg");
}

.home-capability-card-description,
.home-capability-card-price {
  margin: 0;
  color: inherit;
  font-weight: 400;
  opacity: 0.82;
}

.home-capability-card-description {
  font-size: clamp(15px, 1.3cqw, 18px);
  line-height: 1.25;
}

.home-capability-card-price {
  margin-top: 9px;
  font-size: clamp(13px, 1.1cqw, 16px);
  line-height: 1.2;
  opacity: 0.7;
}

.home-api {
  padding-top: 110px;
  scroll-margin-top: 96px;
}

.home-api-layout {
  display: grid;
  grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.home-api-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
}

.home-api-kicker {
  margin: 0 0 18px;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.46;
  text-transform: uppercase;
}

.home-api-copy h3 {
  max-width: 420px;
  margin: 0;
  color: inherit;
  font-size: clamp(26px, 2.8cqw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.home-api-copy p:not(.home-api-kicker) {
  max-width: 430px;
  margin: 22px 0 0;
  color: inherit;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.72;
}

.home-api-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-api-metrics span {
  display: inline-flex;
  height: 36px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(16, 16, 16, 0.07);
  color: inherit;
  font-size: 14px;
  font-weight: 500;
}

.home-api-metrics img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
}

.home-api-code-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.05);
}

.home-api-code-header {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.42);
}

.home-api-window-dots {
  display: flex;
  flex: 0 0 auto;
  gap: 7px;
}

.home-api-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.28;
}

.home-api-tabs {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.home-api-tabs::-webkit-scrollbar {
  display: none;
}

.home-api-tab {
  height: 34px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.58;
  cursor: pointer;
}

.home-api-tab.is-active {
  background: rgba(16, 16, 16, 0.08);
  opacity: 1;
}

.home-api-code-body {
  min-width: 0;
}

.home-api-code-panel {
  display: none;
  min-height: 430px;
  box-sizing: border-box;
  margin: 0;
  overflow-x: auto;
  padding: 24px;
  color: rgba(16, 16, 16, 0.78);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre;
}

.home-api-code-panel.is-active {
  display: block;
}

.home-api-code-panel code {
  font: inherit;
}

.home-api-token-command {
  color: #2557fe;
}

.home-api-token-flag,
.home-api-token-key {
  color: #8b5cf6;
}

.home-api-token-string {
  color: #0f9f6e;
}

.home-api-token-bool {
  color: #d97706;
}

.home-api-token-env {
  color: #dc2626;
}

@media (max-width: 980px) {
.home-capabilities {
    --home-capabilities-menu-top-offset: -11px;
  }

.home-capabilities-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

.home-capabilities-menu {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

.home-capabilities.is-capabilities-menu-stuck .home-capabilities-menu {
    transform: translateY(var(--home-capabilities-menu-top-offset));
  }

.home-capabilities-menu::-webkit-scrollbar {
    display: none;
  }

.home-capabilities-menu-link {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 0 16px;
    font-size: 22px;
  }

.home-capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

.home-api-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

.home-api-copy h3,
  .home-api-copy p:not(.home-api-kicker) {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
.home-hero {
    height: auto;
    gap: 28px;
  }

.home-hero-title {
    max-width: 680px;
    font-size: 40px;
    line-height: 1.12;
    white-space: normal;
  }

.home-hero-subtitle {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.25;
  }

.home-hero-chips {
    gap: 10px;
  }

.home-hero-chip {
    height: 38px;
    gap: 7px;
    padding: 0 16px;
    font-size: 14px;
  }

.home-hero-chip-icon {
    width: 17px;
    height: 17px;
  }

.home-showcase {
    padding-top: 35px;
  }

.home-showcase-grid {
    aspect-ratio: 1267.3 / 1561.34;
  }

.home-showcase-tile-primary {
    top: 0;
    left: 0;
    width: 52.523091%;
    height: 64.047552%;
  }

.home-showcase-grid > .home-showcase-empty:nth-of-type(2) {
    top: 0;
    left: 54.101633%;
    width: 26.320859%;
    height: 21.365250%;
  }

.home-showcase-tile-motion {
    top: 65.328987%;
    left: 0;
    width: 36.177000%;
    height: 34.671013%;
  }

.home-showcase-grid > .home-showcase-empty:nth-of-type(3) {
    top: 0;
    left: 82.001450%;
    width: 17.998550%;
    height: 21.365250%;
  }

.home-showcase-tile-character {
    top: 65.328987%;
    left: 75.265000%;
    width: 24.735000%;
    height: 34.671013%;
  }

.home-showcase-tile-wide {
    top: 0;
    left: 54.101633%;
    width: 45.898367%;
    height: 41.401393%;
  }

.home-showcase-tile-video {
    top: 42.682301%;
    left: 54.101633%;
    width: 45.898367%;
    height: 21.365251%;
  }

.home-showcase-tile-extra-wide {
    top: 65.328987%;
    left: 37.777000%;
    width: 35.888000%;
    height: 34.671013%;
  }

.home-showcase-bottom-row {
    position: absolute;
    top: 65.328987%;
    left: 0;
    display: grid;
    width: 100%;
    height: 34.671013%;
    grid-template-columns: 36.177fr 35.888fr 24.735fr;
    gap: 1.6%;
  }

.home-showcase-bottom-row > .home-showcase-tile {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
  }

.home-showcase-title {
    font-size: clamp(10.2px, 1.91cqw, 24px);
    overflow-wrap: anywhere;
  }

.home-showcase-caption {
    padding: clamp(8.4px, 3.08cqw, 47.6px);
  }

.home-showcase-r-model .home-showcase-caption {
    padding: clamp(8.4px, 3.08cqw, 47.6px);
  }

.home-studio {
    gap: 28px;
    padding-top: 56px;
  }

.home-studio-plate {
    gap: 28px;
  }

.home-studio-plate-copy {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.25;
  }

.home-capabilities {
    padding-top: 72px;
  }

.home-section-title {
    margin-bottom: 34px;
    font-size: 40px;
    line-height: 1.12;
  }

.home-capabilities-menu-link {
    font-size: 15px;
  }

.home-capabilities-menu {
    transform: translateY(-18px);
  }

.home-capabilities.is-capabilities-menu-stuck .home-capabilities-menu {
    border-radius: 0;
    transform: translateY(-18px);
  }

.home-capabilities-grid {
    grid-template-columns: 1fr;
  }

.home-capability-card {
    aspect-ratio: 3 / 3.2;
  }

.home-capability-card-image {
    height: 125%;
    object-position: top center;
  }

.home-api {
    padding-top: 78px;
  }

.home-api-layout {
    gap: 24px;
  }

.home-api-copy h3 {
    font-size: 30px;
  }

.home-api-copy p:not(.home-api-kicker) {
    font-size: 16px;
  }

.home-api-code-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

.home-api-code-panel {
    min-height: 0;
    padding: 18px;
    font-size: 12px;
    line-height: 1.58;
  }
}

@media (max-width: 480px) {
.home-hero {
    gap: 24px;
  }

.home-hero-title {
    font-size: 34px;
  }

.home-hero-subtitle {
    font-size: 17px;
  }

.home-studio {
    gap: 24px;
  }

.home-studio-plate {
    gap: 24px;
  }

.home-studio-plate-copy {
    font-size: 17px;
  }

.home-hero-chip {
    height: 36px;
    padding: 0 14px;
  }

.home-hero-chip-icon {
    width: 16px;
    height: 16px;
  }

.home-section-title {
    font-size: 34px;
  }

.home-api-copy h3 {
    font-size: 27px;
  }
}
