@charset "UTF-8";
:root {
  --paper: #f5f5ef;
  --white: #fff;
  --ink: #202620;
  --muted: #74796e;
  --line: #dedfd6;
  --lime: #d0f584;
  --lime-bright: #d1ff75;
  --soft: #eceee5;
  --forest: #193d30;
  --red: #b44e42;
  --radius: 20px;
  --shadow: 0 20px 70px #253a2220;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.55;
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  border-radius: 8px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #638936;
  outline-offset: 4px;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  min-height: 45px;
}
input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--forest);
  flex: none;
}
textarea {
  resize: vertical;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 530;
  letter-spacing: -0.045em;
  line-height: 1.13;
}
p {
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(40px, 5vw, 68px);
}
h2 {
  font-size: clamp(30px, 3vw, 44px);
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 17px;
}
svg {
  vertical-align: middle;
}
code,
pre,
.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
code {
  font-size: 0.9em;
}
pre {
  overflow: auto;
  line-height: 1.75;
  tab-size: 2;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
button svg,
a svg {
  flex: none;
}
.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  flex-shrink: 0;
}
.btn {
  border: 1px solid transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-weight: 550;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.18s;
}
.btn:hover:not(:disabled) {
  background: #374b35;
  transform: translateY(-1px);
}
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn.secondary:hover:not(:disabled) {
  background: var(--soft);
}
.btn.lime {
  color: var(--ink);
  background: var(--lime-bright);
}
.btn.lime:hover:not(:disabled) {
  background: #b5ec55;
}
.btn.small {
  min-height: 35px;
  padding: 7px 13px;
  font-size: 12px;
}
.btn.danger {
  background: #fff2ee;
  color: var(--red);
  border-color: #efd5cf;
}
.btn.block {
  width: 100%;
}
.icon-btn {
  background: none;
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.icon-btn:hover {
  background: var(--soft);
}
.link-btn {
  border: 0;
  background: none;
  padding: 0;
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.muted {
  color: var(--muted);
}
.small-text {
  font-size: 12px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 650;
  margin-bottom: 22px;
}
.eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 100%;
}
.label {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.4;
  padding: 5px 9px;
  background: var(--soft);
  border-radius: 100px;
  white-space: nowrap;
}
.pill.green {
  background: #e8f2dc;
  color: #3b632f;
}
.pill.amber {
  background: #f7ecd8;
  color: #886228;
}
.pill.red {
  background: #f9e6e1;
  color: var(--red);
}
.dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: currentColor;
  border-radius: 50%;
}
.text-right {
  text-align: right;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.full {
  width: 100%;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-0 {
  margin-bottom: 0;
}
.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 21px;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand .api {
  font-weight: 450;
  color: var(--muted);
}
.brand-mark {
  width: 27px;
  height: 27px;
  border: 7px solid currentColor;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.brand-mark:after {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
  position: absolute;
  right: -9px;
  top: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
}
.initial-loading {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.initial-loading p {
  margin: 0;
}
.initial-loading .brand-mark {
  animation: turn 2s linear infinite;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
/* Public front door */
.public-header {
  max-width: 1380px;
  margin: auto;
  height: 90px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.public-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
}
.public-nav a:hover {
  color: #608435;
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.beta-tag {
  font-family: monospace;
  font-size: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 5px;
  letter-spacing: 0.04em;
}
.landing-main {
  max-width: 1380px;
  margin: auto;
  padding: 0 56px;
}
.hero {
  padding: 64px 0 77px;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 54px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(47px, 5.2vw, 76px);
  letter-spacing: -0.062em;
  line-height: 1.055;
  margin-bottom: 24px;
  max-width: 660px;
}
.hero h1 em {
  font-style: normal;
  color: #75876c;
}
.hero .lead {
  font-size: 16px;
  line-height: 1.8;
  color: #777d72;
  max-width: 420px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-world {
  position: absolute;
  inset: -46px -30px;
  background: radial-gradient(ellipse at center, #e1edcb 0, transparent 64%);
  overflow: hidden;
}
.orbit-world svg {
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.hero-code {
  background: var(--ink);
  color: #dfe5dc;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 55px #1c321822;
  position: relative;
  transform: rotate(-2deg);
  border: 1px solid #374433;
  overflow: hidden;
}
.code-window-head {
  height: 49px;
  border-bottom: 1px solid #ffffff12;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 7px;
  font-family: monospace;
  font-size: 10px;
  color: #93a18d;
}
.code-window-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #5b6757;
}
.code-window-title {
  margin-left: auto;
}
.hero-code pre {
  padding: 17px 24px 14px;
  margin: 0;
  font-size: 11px;
  line-height: 2;
}
.code-comment {
  color: #82927a;
}
.code-key {
  color: #d3fa9a;
}
.code-string {
  color: #e5dab0;
}
.code-method {
  color: #e8f0e0;
}
.code-response {
  margin: 0 20px 20px;
  border: 1px solid #ffffff15;
  padding: 13px 14px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #bdc8b5;
}
.code-response .pill {
  color: #c4ed89;
  background: #d0f58412;
}
.code-floating-label {
  position: absolute;
  bottom: -15px;
  right: 14px;
  transform: rotate(2deg);
  padding: 11px 16px;
  border: 1px solid #c8d9b5;
  border-radius: 9px;
  background: #e9f3dc;
  font-size: 10px;
  box-shadow: 0 8px 24px #22331814;
  display: flex;
  gap: 8px;
  align-items: center;
}
.code-floating-label:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6a972d;
}
.category-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 0;
  margin-bottom: 88px;
}
.category-band-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}
.category-band-item:last-child {
  border: 0;
}
.category-band-item .icon {
  width: 21px;
  height: 21px;
  color: #738269;
}
.category-band-item span {
  font-size: 12px;
  font-weight: 500;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.section-head h2 {
  max-width: 570px;
  margin-bottom: 0;
}
.section-head .eyebrow {
  margin-bottom: 16px;
}
.section-head p {
  max-width: 310px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.landing-models {
  margin-bottom: 84px;
}
.landing-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.model-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  background: #fbfbf7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 220px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.model-card:hover {
  transform: translateY(-3px);
  border-color: #a0b58c;
}
.model-symbol {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf0e2;
  color: #536f43;
}
.model-symbol.video {
  background: #eee7dc;
  color: #8d7150;
}
.model-symbol.audio {
  background: #e5edee;
  color: #55767a;
}
.model-symbol.text {
  background: #eeebf0;
  color: #75647e;
}
.model-symbol .icon {
  width: 22px;
  height: 22px;
}
.model-card h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
  margin-bottom: 7px;
}
.model-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}
.model-card-bottom {
  margin-top: auto;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.landing-section-caption {
  font-size: 11px;
  color: var(--muted);
  margin: 18px 0 0;
}
.integration-section {
  background: #e9ecdf;
  border: 1px solid #dce0d0;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  margin-bottom: 82px;
  overflow: hidden;
}
.integration-intro {
  padding: 45px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.integration-intro h2 {
  font-size: 38px;
  margin-bottom: 19px;
}
.integration-intro p {
  color: #77816d;
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 330px;
}
.integration-steps {
  border-left: 1px solid #d5dac9;
  padding: 10px 34px;
  display: grid;
}
.integration-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid #d5dac9;
}
.integration-step:last-child {
  border: 0;
}
.step-no {
  font-size: 11px;
  color: #909a80;
  padding-top: 5px;
}
.integration-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.integration-step p {
  font-size: 12px;
  line-height: 1.7;
  color: #77816d;
  margin: 0;
}
.landing-bottom {
  padding: 2px 0 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.landing-bottom h2 {
  font-size: 37px;
  margin: 0;
}
.landing-bottom p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.public-footer {
  max-width: 1268px;
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 23px 0 32px;
  display: flex;
  gap: 26px;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.public-footer-links {
  display: flex;
  gap: 24px;
}
.service-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #80946d;
  margin-right: 6px;
}
/* Console */
.console-shell {
  display: flex;
  min-height: 100dvh;
}
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 230px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
  background: #efefe7;
  border-right: 1px solid var(--line);
  z-index: 30;
}
.sidebar .brand {
  font-size: 20px;
  margin: 0 15px 33px;
}
.workspace-chip {
  border: 1px solid #d6d9cc;
  padding: 10px 11px;
  margin: 0 4px 28px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  background: #f5f5ee;
}
.workspace-avatar {
  width: 27px;
  height: 27px;
  background: #dce7cd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-family: monospace;
  font-size: 10px;
}
.sidebar-caption {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #95998b;
  text-transform: uppercase;
  margin: 0 16px 10px;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 12px;
  color: #717668;
}
.side-link:hover {
  background: #e6e8dc;
}
.side-link.active {
  background: #dfe7d1;
  color: #273622;
  font-weight: 550;
}
.side-link.active:after {
  content: "";
  width: 5px;
  height: 5px;
  background: #6a873e;
  border-radius: 100%;
  margin-left: auto;
}
.side-link .icon {
  width: 17px;
  height: 17px;
}
.side-divider {
  height: 1px;
  background: var(--line);
  margin: 19px 12px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 34px;
}
.balance-card {
  background: #e6e8dc;
  border: 1px solid #d9ddcd;
  border-radius: 11px;
  padding: 16px;
  margin: 0 4px 18px;
}
.balance-card .label {
  font-size: 10px;
  margin-bottom: 4px;
}
.balance-amount {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.06em;
}
.balance-card .btn {
  margin-top: 12px;
  width: 100%;
  font-size: 10px;
  min-height: 33px;
  background: #f6f7ef;
  border-color: #d5dac8;
  color: #45543a;
}
.profile-button {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px;
  background: none;
  border: 0;
  text-align: left;
}
.profile-avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #d9dece;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex: none;
}
.profile-text {
  min-width: 0;
  flex: 1;
}
.profile-text strong {
  font-size: 11px;
  display: block;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-text span {
  font-size: 9px;
  color: var(--muted);
}
.profile-button .icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.console-body {
  margin-left: 230px;
  flex: 1;
  min-width: 0;
}
.console-header {
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  background: #f8f8f2;
  gap: 15px;
}
.breadcrumb {
  font-size: 11px;
  color: #969b8e;
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb .current {
  color: var(--ink);
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  color: var(--muted);
}
.mobile-menu {
  display: none;
}
.console-main {
  max-width: 1440px;
  padding: 39px 40px 60px;
  margin: auto;
}
.page-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.page-title-row h1 {
  font-size: 32px;
  letter-spacing: -0.045em;
  margin-bottom: 9px;
}
.page-title-row p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.page-title-row .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}
.stat-card {
  padding: 21px 22px;
  background: #fcfcf8;
  border: 1px solid var(--line);
  border-radius: 13px;
  min-width: 0;
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.stat-top .label {
  margin: 0;
  font-size: 10px;
}
.stat-top .icon {
  width: 15px;
  height: 15px;
  color: #949c86;
}
.stat-value {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 450;
  overflow-wrap: anywhere;
}
.stat-sub {
  font-size: 9px;
  color: var(--muted);
  margin-top: 10px;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fcfcf9;
  min-width: 0;
  overflow: hidden;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 23px;
  border-bottom: 1px solid var(--line);
}
.panel-head h2,
.panel-head h3 {
  font-size: 15px;
  letter-spacing: -0.015em;
  margin: 0;
}
.panel-head p {
  font-size: 11px;
  color: var(--muted);
  margin: 6px 0 0;
}
.panel-body {
  padding: 24px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.chart-wrap {
  padding: 25px 26px 16px;
  min-height: 248px;
}
.chart-svg {
  width: 100%;
  height: 165px;
  display: block;
  overflow: visible;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: #979d90;
  font: 9px monospace;
}
.chart-empty {
  height: 189px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 44px,
    #e9ebe144px,
    #e9ebe145px
  );
  color: var(--muted);
  text-align: center;
}
.chart-empty .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: #9aa58c;
}
.chart-empty p {
  font-size: 11px;
  background: #fcfcf9;
  padding: 8px 13px;
  max-width: 270px;
}
.quick-start {
  background: #e7eedd;
  border-color: #d5dfc8;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.quick-start h3 {
  font-size: 21px;
  margin: 12px 0;
}
.quick-start p {
  font-size: 12px;
  color: #718265;
  max-width: 280px;
  line-height: 1.75;
}
.quick-start .btn {
  align-self: flex-start;
  margin-top: auto;
}
.quick-start code {
  font-size: 10px;
  padding: 10px 12px;
  display: block;
  background: #ffffff88;
  border: 1px solid #d6dfcc;
  border-radius: 8px;
  margin: 5px 0 22px;
  overflow-wrap: anywhere;
}
.empty-state {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 36px 25px;
  text-align: center;
}
.empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  color: #859572;
}
.empty-state h3 {
  font-size: 18px;
  margin-bottom: 9px;
}
.empty-state p {
  font-size: 12px;
  color: var(--muted);
  max-width: 390px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.empty-state .btn {
  font-size: 11px;
}
.section-gap {
  margin-top: 24px;
}
.table-scroll {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 11px;
}
th {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #929787;
  padding: 14px 23px;
  border-bottom: 1px solid var(--line);
  background: #f8f9f2;
  white-space: nowrap;
}
td {
  padding: 17px 23px;
  border-bottom: 1px solid #e9eae2;
  vertical-align: middle;
}
tr:last-child td {
  border-bottom: 0;
}
tr.clickable:hover {
  background: #f1f4e9;
  cursor: pointer;
}
td strong {
  font-weight: 500;
}
.table-prompt {
  max-width: 280px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--muted);
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 23px;
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 15px;
  font-size: 11px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 7px;
}
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.filter-btn .icon {
  width: 14px;
  height: 14px;
}
.search-field {
  position: relative;
  margin-left: auto;
  min-width: 210px;
}
.search-field input {
  padding-left: 36px;
  min-height: 35px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 11px;
  background: #fdfdf8;
}
.search-field .icon {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.catalog-grid .model-card {
  padding: 23px;
  min-height: 244px;
}
.catalog-grid .model-card p {
  max-width: 280px;
}
.model-id {
  font-size: 9px;
  color: #929987;
  overflow-wrap: anywhere;
}
.model-capabilities {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: -5px;
}
.model-capabilities .pill {
  font-size: 9px;
  padding: 3px 7px;
}
.notice {
  display: flex;
  gap: 12px;
  border: 1px solid #dce3cf;
  background: #edf2e4;
  padding: 14px 17px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.7;
  color: #6c7a5e;
}
.notice .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: none;
}
.notice.warning {
  background: #f7f1e4;
  border-color: #e9ddc1;
  color: #8d7850;
}
.notice.error {
  background: #fbefeb;
  border-color: #ead2c9;
  color: #9a5d4b;
}
.notice p {
  margin: 0;
}
.loading-panel {
  padding: 70px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.loader {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: #698650;
  border-radius: 50%;
  display: inline-block;
  animation: turn 0.8s linear infinite;
  margin-right: 10px;
  vertical-align: middle;
}
.auth-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
}
.auth-gate-copy {
  padding: 50px 40px;
  background: #e7eedd;
}
.auth-gate-copy h2 {
  font-size: 35px;
  max-width: 330px;
  margin: 22px 0;
}
.auth-gate-copy p {
  font-size: 13px;
  color: #78866b;
  line-height: 1.9;
  max-width: 300px;
}
.auth-gate-form {
  padding: 48px 40px;
  align-self: center;
}
.auth-gate-form h3 {
  font-size: 22px;
  margin-bottom: 11px;
}
.auth-gate-form p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}
.auth-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 46px;
  border-radius: 9px;
  font-size: 12px;
}
.auth-caption {
  font-size: 10px;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.8;
}
.auth-service-note {
  font-size: 10px;
  color: #8f957f;
  padding: 10px 0 0;
}
.playground-grid {
  display: grid;
  grid-template-columns: minmax(285px, 0.85fr) minmax(0, 1.45fr);
  gap: 20px;
  align-items: start;
}
.field {
  margin-bottom: 18px;
}
.field label {
  font-size: 11px;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-size: 12px;
}
.field .help {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 7px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.prompt-editor {
  min-height: 135px;
  line-height: 1.8;
}
.json-editor {
  font-family: monospace;
  min-height: 210px;
  font-size: 11px !important;
  line-height: 1.8;
  background: #f5f6ee;
  tab-size: 2;
}
.editor-toggle {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  background: none;
  border: 0;
  color: var(--muted);
}
.editor-toggle .icon {
  width: 13px;
  height: 13px;
}
.segmented {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  background: #f1f3e9;
  border-radius: 7px;
}
.segmented button {
  border: 0;
  background: none;
  padding: 6px 12px;
  font-size: 10px;
  color: #8a9380;
  border-radius: 4px;
}
.segmented button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px #1a2c1710;
}
.code-panel {
  background: var(--ink);
  color: #d3deca;
  border-color: #2a3526;
}
.code-panel .panel-head {
  border-color: #ffffff13;
  color: #becdb2;
}
.code-panel .segmented {
  background: #ffffff05;
  border-color: #ffffff14;
}
.code-panel .segmented button {
  color: #9aaa8e;
}
.code-panel .segmented button.active {
  background: #45543b;
  color: #e1f4cf;
}
.code-panel .icon-btn {
  border-color: #ffffff20;
  color: #c3d7b2;
}
.request-code {
  padding: 20px 23px;
  font-size: 10px;
  min-height: 240px;
  margin: 0;
  line-height: 1.9;
  color: #d7e8cb;
}
.result-section {
  margin-top: 19px;
}
.result-output {
  padding: 22px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.8;
}
.result-assets {
  display: grid;
  gap: 15px;
  padding: 22px;
}
.result-assets img,
.result-assets video {
  max-width: 100%;
  max-height: 460px;
  border-radius: 9px;
  object-fit: contain;
  background: #e9eddf;
}
.result-assets audio {
  max-width: 100%;
  width: 100%;
}
.result-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 47px 24px;
  font-size: 12px;
  color: var(--muted);
}
.result-details {
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
  flex-wrap: wrap;
}
.key-prefix {
  font-size: 11px;
  background: #edf0e4;
  border-radius: 5px;
  padding: 5px 8px;
  white-space: nowrap;
}
.keys-counter {
  font-size: 11px;
  color: var(--muted);
}
.key-scope {
  max-width: 250px;
  font-size: 10px;
  color: #7d866f;
}
.billing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  margin-bottom: 24px;
}
.credit-card {
  background: var(--ink);
  color: #eff4e7;
  border-radius: 15px;
  padding: 29px;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.credit-card:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -35px;
  border: 1px solid #ccef8b25;
  border-radius: 50%;
  box-shadow:
    0 0 0 36px #ccef8b06,
    0 0 0 73px #ccef8b04;
  pointer-events: none;
}
.credit-card .label {
  color: #9ca98e;
  font-size: 10px;
}
.credit-card .credit-value {
  font-size: 45px;
  letter-spacing: -0.06em;
  margin: 14px 0 34px;
  line-height: 1.1;
}
.credit-card .small-text {
  color: #a0af92;
  margin-top: auto;
  font-size: 10px;
}
.crypto-badge {
  font-size: 9px;
  background: #d1ff7517;
  border: 1px solid #d1ff7525;
  color: #c7e8a5;
  padding: 4px 8px;
  border-radius: 100px;
}
.billing-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.billing-form h3 {
  font-size: 20px;
}
.billing-form p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.preset-amounts {
  display: flex;
  gap: 8px;
  margin: 10px 0 19px;
}
.preset-amounts button {
  border: 1px solid var(--line);
  background: #f4f6ed;
  padding: 7px 13px;
  font-size: 11px;
  border-radius: 7px;
  flex: 1;
}
.preset-amounts button:hover {
  background: var(--lime);
}
.status-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: #edf1e4;
  border-radius: 14px;
  padding: 22px 25px;
  margin-bottom: 24px;
}
.status-orb {
  width: 36px;
  height: 36px;
  background: #e1e8d3;
  color: #64794b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.status-summary h3 {
  font-size: 18px;
  margin: 0 0 6px;
}
.status-summary p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.status-card {
  padding: 22px;
}
.status-name {
  font-size: 13px;
  font-weight: 500;
}
.status-metrics {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 23px 0 20px;
  font-size: 10px;
  color: var(--muted);
}
.status-rate {
  font-size: 28px;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 7px;
}
.uptime-bars {
  display: flex;
  gap: 3px;
  height: 28px;
}
.uptime-bar {
  flex: 1;
  border-radius: 2px;
  background: #e4e7dd;
  min-width: 2px;
}
.uptime-bar.good {
  background: #afc992;
}
.uptime-bar.bad {
  background: #d8a187;
}
.uptime-caption {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #9ca28f;
  margin-top: 8px;
}
.docs-grid {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.docs-toc {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
}
.docs-toc a {
  color: var(--muted);
  padding: 7px 10px;
  border-left: 1px solid var(--line);
}
.docs-toc a:hover {
  color: var(--ink);
  border-color: var(--forest);
  background: #eaeee0;
}
.docs-content {
  max-width: 850px;
}
.docs-content section {
  scroll-margin-top: 35px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.docs-content h2 {
  font-size: 25px;
  margin-bottom: 17px;
}
.docs-content h3 {
  font-size: 17px;
  margin-top: 22px;
  letter-spacing: -0.025em;
}
.docs-content p,
.docs-content li {
  font-size: 12px;
  line-height: 1.9;
  color: #777f6d;
}
.docs-content ul,
.docs-content ol {
  padding-left: 22px;
}
.docs-content code:not(pre code) {
  background: #e9ede0;
  border: 1px solid #dfe4d4;
  border-radius: 4px;
  color: #486137;
  padding: 2px 5px;
  font-size: 10px;
  overflow-wrap: anywhere;
}
.docs-code {
  position: relative;
  background: var(--ink);
  color: #d6e4c9;
  border-radius: 11px;
  padding: 21px 23px;
  margin: 19px 0;
  font-size: 10px;
  line-height: 1.9;
}
.docs-code pre {
  margin: 0;
  padding-right: 18px;
}
.docs-code .icon-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #b8cca5;
  border-color: #ffffff20;
  width: 28px;
  height: 28px;
}
.endpoint {
  font: 11px monospace;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 17px 0;
  padding: 13px 15px;
  background: #edf0e4;
  border-radius: 8px;
  overflow-wrap: anywhere;
}
.endpoint b {
  font-size: 9px;
  background: #dee8d1;
  color: #57703e;
  border-radius: 4px;
  padding: 4px 6px;
}
.docs-table td,
.docs-table th {
  padding: 12px 14px;
  overflow-wrap: anywhere;
  white-space: normal;
}
.docs-table {
  table-layout: fixed;
}
.docs-table td:first-child {
  font-family: monospace;
  color: #4e6540;
  width: 35%;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  color: var(--muted);
  padding: 16px 23px;
  border-top: 1px solid var(--line);
}
/* Dialogs */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #18231675;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.modal {
  background: var(--paper);
  border: 1px solid #e5e8d9;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(540px, 100%);
  max-height: 90dvh;
  overflow: auto;
}
.modal.wide {
  width: min(720px, 100%);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.modal-header h2 {
  font-size: 23px;
  margin: 0;
}
.modal-body {
  padding: 27px 28px;
}
.modal-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.modal-body > p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.scope-options {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
}
.scope-option {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
}
.model-checklist {
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 5px 13px;
  margin-bottom: 20px;
  background: #fcfcf6;
}
.model-check {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid #e7ebdf;
  font-size: 11px;
}
.model-check:last-child {
  border: 0;
}
.model-check span {
  flex: 1;
}
.model-check .pill {
  font-size: 8px;
}
.secret-key {
  padding: 15px;
  border: 1px solid #c7d5b3;
  border-radius: 9px;
  background: #e9f0dc;
  font-size: 11px;
  word-break: break-all;
  font-family: monospace;
  margin: 20px 0;
  user-select: all;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
.detail-grid .label {
  font-size: 10px;
  margin-bottom: 6px;
}
.detail-grid .detail-value {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(420px, calc(100vw - 32px));
}
.toast {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 18px;
  border: 1px solid #d4dfc7;
  border-radius: 10px;
  background: #eff4e7;
  box-shadow: 0 8px 30px #142b1720;
  font-size: 12px;
  color: #4d623c;
}
.toast.error {
  background: #faece6;
  border-color: #ead0c4;
  color: #9b5541;
}
.toast .icon {
  width: 17px;
  height: 17px;
  margin-top: 1px;
}
.error-inline {
  font-size: 11px;
  color: var(--red);
  padding: 8px 0;
  line-height: 1.7;
}
.connection-banner {
  padding: 10px 20px;
  background: #f7ecd7;
  border-bottom: 1px solid #ebdaba;
  color: #8d764d;
  text-align: center;
  font-size: 11px;
}
.landing-empty {
  grid-column: 1/-1;
  border: 1px dashed #ccd3be;
  border-radius: 14px;
  padding: 26px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.sidebar-scrim {
  display: none;
}
@media (min-width: 1550px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 105px;
  }
  .hero-visual {
    min-height: 455px;
  }
  .hero-code pre {
    font-size: 12px;
  }
  .landing-main {
    max-width: 1380px;
  }
  .console-main {
    padding-top: 45px;
  }
}
@media (max-width: 1200px) {
  .public-header {
    padding: 0 35px;
  }
  .landing-main {
    padding: 0 35px;
  }
  .hero {
    gap: 28px;
    padding-top: 48px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-code pre {
    font-size: 9px;
    padding: 15px 18px;
  }
  .category-band {
    margin-bottom: 62px;
  }
  .public-footer {
    margin: 0 35px;
  }
  .console-header {
    padding: 0 26px;
  }
  .console-main {
    padding: 32px 26px;
  }
  .sidebar {
    width: 210px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .console-body {
    margin-left: 210px;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 18px;
  }
  .stat-value {
    font-size: 27px;
  }
  .dashboard-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .playground-grid {
    grid-template-columns: minmax(265px, 0.95fr) minmax(0, 1.2fr);
  }
  .panel-body {
    padding: 20px;
  }
  .docs-grid {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 24px;
  }
  .header-meta .header-version {
    display: none;
  }
}
@media (max-width: 960px) {
  .public-nav {
    gap: 21px;
  }
  .public-header {
    padding: 0 25px;
    height: 80px;
  }
  .landing-main {
    padding: 0 25px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 48px 0 64px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero .lead {
    font-size: 14px;
  }
  .hero-visual {
    min-height: 340px;
  }
  .hero-code pre {
    font-size: 8px;
    padding: 15px;
  }
  .hero-code {
    transform: none;
  }
  .code-floating-label {
    font-size: 8px;
    bottom: -12px;
  }
  .code-response {
    margin: 0 14px 14px;
    padding: 10px;
    font-size: 8px;
  }
  .code-response .pill {
    font-size: 8px;
  }
  .landing-model-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-model-grid .model-card {
    min-height: 200px;
  }
  .integration-intro {
    padding: 33px 28px;
  }
  .integration-intro h2 {
    font-size: 32px;
  }
  .integration-steps {
    padding: 10px 25px;
  }
  .public-footer {
    margin: 0 25px;
  }
  .sidebar {
    width: 190px;
    padding: 25px 10px 15px;
  }
  .sidebar .brand {
    margin-left: 14px;
    font-size: 19px;
  }
  .side-link {
    padding: 10px 13px;
    font-size: 11px;
  }
  .console-body {
    margin-left: 190px;
  }
  .console-header {
    padding: 0 23px;
  }
  .console-main {
    padding: 29px 22px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .quick-start {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 20px;
  }
  .quick-start .model-symbol {
    display: none;
  }
  .quick-start h3 {
    grid-column: 1;
  }
  .quick-start p {
    grid-column: 1;
    max-width: none;
  }
  .quick-start code {
    grid-column: 1;
  }
  .quick-start .btn {
    grid-column: 2;
    grid-row: 1/4;
    align-self: center;
  }
  .playground-grid {
    grid-template-columns: 1fr;
  }
  .auth-gate {
    grid-template-columns: 1fr;
  }
  .auth-gate-copy {
    padding: 30px;
  }
  .auth-gate-copy h2 {
    font-size: 28px;
    margin: 12px 0;
    max-width: none;
  }
  .auth-gate-copy p {
    max-width: none;
    margin-bottom: 0;
  }
  .auth-gate-form {
    padding: 30px;
  }
  .billing-grid {
    grid-template-columns: 1fr;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .docs-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .docs-toc a {
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 10px;
    padding: 5px 10px;
  }
  .docs-content {
    max-width: none;
  }
  .page-title-row h1 {
    font-size: 29px;
  }
}
@media (max-width: 720px) {
  .public-header {
    height: 76px;
    padding: 0 22px;
    gap: 14px;
  }
  .public-header .brand {
    font-size: 20px;
  }
  .public-header .beta-tag {
    display: none;
  }
  .public-nav {
    display: none;
  }
  .public-header .btn {
    font-size: 11px;
    min-height: 37px;
    padding: 8px 15px;
  }
  .landing-main {
    padding: 0 23px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 37px;
    padding: 32px 0 43px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(44px, 8.5vw, 62px);
    max-width: 600px;
  }
  .hero .lead {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-note {
    font-size: 10px;
  }
  .hero-visual {
    min-height: 330px;
    max-width: 580px;
    width: 100%;
    margin: auto;
    padding: 14px 0;
  }
  .hero-code {
    transform: rotate(-1deg);
  }
  .hero-code pre {
    font-size: 11px;
    padding: 17px 20px;
  }
  .code-window-head {
    height: 40px;
  }
  .code-response {
    margin: 0 20px 20px;
    font-size: 10px;
    padding: 12px;
  }
  .code-response .pill {
    font-size: 9px;
  }
  .code-floating-label {
    font-size: 9px;
    bottom: -4px;
    right: 15px;
  }
  .orbit-world {
    inset: -28px -20px;
  }
  .category-band {
    grid-template-columns: repeat(4, 1fr);
    padding: 17px 0;
    margin-bottom: 54px;
  }
  .category-band-item {
    gap: 7px;
    flex-direction: column;
  }
  .category-band-item span {
    font-size: 9px;
  }
  .category-band-item .icon {
    width: 18px;
    height: 18px;
  }
  .section-head {
    display: block;
  }
  .section-head h2 {
    font-size: 32px;
    max-width: 390px;
  }
  .section-head p {
    margin-top: 18px;
    font-size: 12px;
    max-width: 340px;
  }
  .landing-models {
    margin-bottom: 51px;
  }
  .landing-model-grid {
    gap: 10px;
  }
  .landing-model-grid .model-card {
    padding: 17px 15px;
    min-height: 220px;
    gap: 17px;
  }
  .model-card h3 {
    font-size: 17px;
  }
  .model-card p {
    font-size: 10px;
  }
  .model-card-bottom {
    font-size: 9px;
    align-items: flex-start;
  }
  .model-card-bottom .pill {
    font-size: 8px;
    white-space: normal;
  }
  .model-symbol {
    width: 35px;
    height: 35px;
    border-radius: 10px;
  }
  .model-symbol .icon {
    width: 19px;
    height: 19px;
  }
  .integration-section {
    grid-template-columns: 1fr;
    margin-bottom: 49px;
  }
  .integration-intro {
    padding: 30px 25px;
  }
  .integration-intro p {
    max-width: 400px;
    margin-bottom: 21px;
  }
  .integration-steps {
    border-left: 0;
    border-top: 1px solid #d5dac9;
    padding: 4px 25px;
  }
  .integration-step {
    padding: 21px 0;
    gap: 8px;
  }
  .integration-step h3 {
    font-size: 17px;
  }
  .integration-step p {
    font-size: 11px;
  }
  .landing-bottom {
    padding-bottom: 40px;
    display: block;
  }
  .landing-bottom h2 {
    font-size: 32px;
  }
  .landing-bottom .btn {
    margin-top: 23px;
  }
  .public-footer {
    margin: 0 23px;
    font-size: 9px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .public-footer-links {
    gap: 16px;
  }
  .sidebar {
    transform: translateX(-100%);
    width: 245px;
    transition: transform 0.2s;
    z-index: 50;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-scrim.open {
    display: block;
    position: fixed;
    inset: 0;
    background: #202a1d70;
    backdrop-filter: blur(3px);
    z-index: 45;
    border: 0;
    border-radius: 0;
  }
  .console-body {
    margin-left: 0;
  }
  .console-header {
    height: 61px;
    padding: 0 20px;
  }
  .mobile-menu {
    display: inline-flex;
    width: 31px;
    height: 31px;
    border: 0;
  }
  .breadcrumb {
    font-size: 10px;
    gap: 7px;
  }
  .breadcrumb .breadcrumb-brand {
    display: none;
  }
  .header-meta {
    font-size: 9px;
    gap: 9px;
  }
  .console-main {
    padding: 27px 20px 42px;
  }
  .page-title-row {
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 23px;
  }
  .page-title-row h1 {
    font-size: 28px;
  }
  .page-title-row p {
    font-size: 11px;
    max-width: 300px;
  }
  .page-title-row .btn {
    font-size: 10px;
    min-height: 35px;
    padding: 7px 13px;
  }
  .page-title-row .eyebrow {
    font-size: 8px;
  }
  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 17px 16px;
  }
  .stat-value {
    font-size: 27px;
  }
  .stat-top {
    margin-bottom: 15px;
  }
  .stat-top .label {
    font-size: 9px;
  }
  .stat-sub {
    font-size: 8px;
    line-height: 1.6;
  }
  .panel-head {
    padding: 18px;
  }
  .panel-head h2,
  .panel-head h3 {
    font-size: 14px;
  }
  .panel-body {
    padding: 20px;
  }
  .quick-start {
    display: flex;
  }
  .quick-start .btn {
    align-self: flex-start;
  }
  .quick-start code {
    width: 100%;
  }
  .dashboard-grid {
    gap: 17px;
  }
  .catalog-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-grid .model-card {
    padding: 17px 14px;
    gap: 16px;
    min-height: 238px;
  }
  .catalog-grid .model-card h3 {
    font-size: 16px;
  }
  .catalog-grid .model-card .model-card-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .model-capabilities .pill {
    font-size: 8px;
  }
  .filters {
    gap: 7px;
  }
  .filter-btn {
    font-size: 10px;
    padding: 7px 12px;
  }
  .filter-btn .icon {
    width: 12px;
    height: 12px;
  }
  .search-field {
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
  }
  .search-field input {
    min-height: 39px;
  }
  .search-field .icon {
    top: 12px;
  }
  .notice {
    font-size: 10px;
    padding: 13px;
  }
  .status-card {
    padding: 18px;
  }
  .status-name {
    font-size: 12px;
  }
  .status-summary {
    padding: 20px;
    gap: 14px;
  }
  .status-summary h3 {
    font-size: 16px;
  }
  .status-summary p {
    font-size: 10px;
  }
  .auth-gate-copy {
    padding: 28px 23px;
  }
  .auth-gate-form {
    padding: 28px 23px;
  }
  .auth-gate-copy h2 {
    font-size: 28px;
  }
  .auth-gate-copy p {
    font-size: 12px;
  }
  .keys-counter {
    font-size: 10px;
  }
  .modal-backdrop {
    padding: 15px;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-header h2 {
    font-size: 21px;
  }
  .modal-body {
    padding: 22px 20px;
  }
  .modal-footer {
    padding: 17px 20px;
  }
  .detail-grid {
    gap: 17px;
  }
  .detail-grid .detail-value {
    font-size: 10px;
  }
  .scope-option {
    font-size: 11px;
  }
  .modal-footer .btn {
    font-size: 11px;
  }
  .toast-stack {
    bottom: 17px;
    right: 16px;
  }
  .toast {
    font-size: 11px;
  }
  .docs-content h2 {
    font-size: 23px;
  }
  .docs-content p,
  .docs-content li {
    font-size: 11px;
  }
  .docs-code {
    font-size: 9px;
    padding: 18px;
  }
  .docs-table td,
  .docs-table th {
    padding: 10px;
    font-size: 9px;
  }
  .endpoint {
    font-size: 10px;
    padding: 12px;
  }
  .request-code {
    font-size: 10px;
    padding: 19px;
    min-height: 210px;
  }
  th,
  td {
    padding: 14px 17px;
  }
  .pagination {
    padding: 16px;
    font-size: 10px;
  }
  .billing-form .field-row {
    gap: 10px;
  }
  .credit-card {
    min-height: 230px;
    padding: 25px;
  }
}
@media (max-width: 390px) {
  .landing-main {
    padding: 0 18px;
  }
  .public-header {
    padding: 0 18px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-code pre {
    font-size: 9px;
  }
  .code-response {
    font-size: 9px;
  }
  .hero-visual {
    min-height: 305px;
  }
  .category-band-item span {
    font-size: 8px;
  }
  .hero-actions .btn {
    font-size: 12px;
    padding: 10px 15px;
  }
  .console-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .console-header {
    padding: 0 14px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid .model-card {
    min-height: 210px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .page-title-row {
    flex-wrap: wrap;
  }
  .header-meta > a {
    display: none;
  }
  .segmented button {
    padding: 6px 9px;
  }
  .hero .lead {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .btn:hover,
  .model-card:hover {
    transform: none;
  }
}
@media (prefers-contrast: more) {
  :root {
    --muted: #535c47;
    --line: #98a28b;
  }
  .small-text,
  .stat-sub,
  .label {
    color: #4d5943;
  }
}
/* Contain decorative orbits without clipping keyboard outlines in content. */
.landing-main {
  overflow-x: clip;
}
.hero-visual {
  min-width: 0;
}
.hero-code {
  min-width: 0;
}
.hero-copy {
  min-width: 0;
}
.hero-code pre {
  max-width: 100%;
}
.code-floating-label {
  max-width: calc(100% - 28px);
  white-space: normal;
}
.model-card {
  min-width: 0;
}
.model-card h3 {
  overflow-wrap: anywhere;
}
.panel-head > * {
  min-width: 0;
}
.status-name {
  overflow-wrap: anywhere;
}
.status-metrics {
  gap: 12px;
}
.modal-body {
  min-width: 0;
}
.balance-card .btn {
  font-size: 9px;
  white-space: normal;
  line-height: 1.4;
  padding: 8px 9px;
  gap: 5px;
}
.balance-card .btn .icon {
  width: 13px;
  height: 13px;
}
/* Point API / editorial product landing. Shares only the console design tokens. */
.public-redesign {
  background: var(--paper);
  overflow-x: clip;
}
.api-public-header {
  max-width: 1320px;
  padding: 0 48px;
  height: 94px;
  border-bottom: 1px solid #dee1d560;
}
.api-public-header .brand {
  font-size: 23px;
}
.api-public-header .public-nav {
  gap: 28px;
  font-size: 12px;
}
.api-public-header .public-nav button {
  border: 0;
  padding: 0;
  background: none;
  font-size: inherit;
  color: inherit;
}
.api-public-header .public-nav a:hover,
.api-public-header .public-nav button:hover {
  color: #618340;
}
.api-public-header .btn {
  padding: 11px 19px;
  font-size: 11px;
  min-height: 42px;
}
.new-landing-main {
  max-width: 1224px;
  padding: 0 32px;
  margin: auto;
}
.story-hero {
  text-align: center;
  padding: 57px 0 0;
  position: relative;
}
.hero-overline {
  font: 10px monospace;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 0 24px;
  color: #727d62;
}
.hero-overline-symbol {
  font-size: 21px;
  color: #738f55;
  line-height: 1;
}
.story-hero h1 {
  font-size: clamp(58px, 6.4vw, 90px);
  line-height: 1.01;
  letter-spacing: -0.071em;
  font-weight: 520;
  margin: 0 0 22px;
}
.story-hero h1 span {
  color: #78866b;
}
.story-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #7e8574;
  margin: 0 0 27px;
}
.story-hero .hero-actions {
  justify-content: center;
  gap: 11px;
}
.story-hero .hero-actions .btn {
  padding: 12px 21px;
  font-size: 12px;
  min-height: 46px;
}
.creation-stage {
  height: 431px;
  max-width: 970px;
  margin: 42px auto 0;
  position: relative;
  text-align: left;
  background: radial-gradient(ellipse at 50% 45%, #dfe7cf55, transparent 67%);
}
.stage-card {
  position: absolute;
  overflow: hidden;
  border: 5px solid #fcfcf7;
  border-radius: 19px;
  box-shadow: 0 19px 45px #2233201c;
  margin: 0;
  background: #dfe3d4;
}
.stage-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stage-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 33px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: linear-gradient(transparent, #121b11a6);
  font-size: 10px;
  font-weight: 450;
}
.stage-card figcaption .icon {
  width: 16px;
  height: 16px;
}
.stage-portrait {
  width: 222px;
  height: 294px;
  left: 8px;
  top: 34px;
  transform: rotate(-7deg);
}
.stage-portrait img {
  object-position: center 22%;
}
.stage-portrait figcaption {
  font: 8px monospace;
}
.stage-main {
  width: 386px;
  height: 334px;
  left: 50%;
  top: 4px;
  transform: translateX(-50%) rotate(1.5deg);
  z-index: 2;
}
.stage-main img {
  object-position: 50% 43%;
}
.stage-motion {
  width: 228px;
  height: 283px;
  right: 6px;
  top: 56px;
  transform: rotate(7deg);
  z-index: 1;
}
.stage-motion img {
  object-position: center 35%;
}
.stage-motion figcaption {
  font: 8px monospace;
}
.stage-play,
.media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  background: #ffffffdb;
  color: var(--ink);
  border: 1px solid #fff;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.stage-play:hover,
.media-play:hover {
  background: var(--lime);
}
.stage-play .icon {
  width: 21px;
  height: 21px;
}
.stage-request {
  position: absolute;
  left: 93px;
  bottom: 53px;
  z-index: 3;
  padding: 17px 20px;
  background: #fdfdf5ed;
  border: 1px solid #e0e4d5;
  border-radius: 12px;
  box-shadow: 0 15px 30px #21351d16;
  transform: rotate(-2deg);
  width: 299px;
  backdrop-filter: blur(12px);
}
.stage-request-label {
  font: 8px monospace;
  letter-spacing: 0.09em;
  color: #90997f;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}
.stage-request-label .dot {
  background: #91aa66;
  width: 4px;
  height: 4px;
}
.stage-request code {
  display: block;
  font-size: 11px;
  color: #576349;
}
.stage-request code span {
  font-size: 8px;
  background: #e7f0d4;
  color: #628340;
  padding: 3px 4px;
  border-radius: 3px;
  margin-right: 5px;
}
.stage-request-line {
  margin-top: 10px;
  font: 9px monospace;
  color: #9da88e;
}
.stage-request-line b {
  color: #5e7746;
  font-weight: 400;
}
.stage-sound {
  position: absolute;
  right: 51px;
  top: 11px;
  z-index: 3;
  background: #ecf0e2f5;
  border: 1px solid #d7dfcb;
  border-radius: 12px;
  width: 206px;
  padding: 13px 15px;
  transform: rotate(3deg);
  box-shadow: 0 9px 24px #263c1c13;
}
.stage-sound > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 7px monospace;
  letter-spacing: 0.04em;
  color: #7d8c6d;
}
.stage-sound .icon {
  width: 13px;
  height: 13px;
}
.soundwave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 54px;
  width: 100%;
}
.soundwave span {
  width: 3px;
  height: var(--bar);
  background: #a3b787;
  border-radius: 3px;
  flex: 1;
  max-width: 5px;
}
.stage-sound .soundwave {
  height: 27px;
  gap: 2px;
  margin-top: 6px;
}
.stage-sound .soundwave span {
  max-width: 2px;
}
.stage-note {
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  color: #909884;
}
.possibility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
  margin: 5px 0 0;
}
.possibility-strip > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  font-size: 12px;
}
.possibility-strip > a:last-child {
  border: 0;
}
.possibility-strip > a > span.mono {
  font-size: 8px;
  color: #9ca48f;
}
.possibility-strip > a > .icon {
  width: 18px;
  height: 18px;
  color: #72875c;
}
.possibility-strip > a > .icon:last-child {
  width: 13px;
  height: 13px;
  margin-left: 15px;
  color: #a0aa90;
}
.possibility-strip > a:hover {
  color: #6f8e4e;
}
.new-section {
  padding-top: 95px;
}
.new-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 37px;
}
.new-section-head h2 {
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.054em;
  margin: 0;
}
.new-section-head h2 span {
  color: #849177;
}
.new-section-head .eyebrow {
  font-size: 9px;
  margin-bottom: 19px;
  letter-spacing: 0.13em;
}
.new-section-head > p {
  max-width: 310px;
  color: #909781;
  font-size: 12px;
  line-height: 1.85;
  margin: 0 0 4px;
}
.creation-tabs {
  display: flex;
  gap: 5px;
  width: max-content;
  max-width: 100%;
  padding: 5px;
  background: #ecefe4;
  border: 1px solid #dce2cf;
  border-radius: 100px;
  margin-bottom: 21px;
}
.creation-tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 39px;
  padding: 9px 20px;
  background: transparent;
  border: 0;
  border-radius: 100px;
  font-size: 11px;
  color: #7f8b71;
}
.creation-tabs button.active {
  background: var(--ink);
  color: #f7faef;
  box-shadow: 0 2px 8px #25351d12;
}
.creation-tabs .icon {
  width: 15px;
  height: 15px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}
.showcase-request {
  background: #eff1e6;
  border: 1px solid #dfe5d1;
  border-radius: 17px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.showcase-request-intro {
  padding: 0 0 20px;
}
.demo-index {
  font-size: 8px;
  color: #8f9a80;
  letter-spacing: 0.07em;
}
.showcase-request-intro h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin: 12px 0 10px;
}
.showcase-request-intro p {
  font-size: 11px;
  color: #879579;
  line-height: 1.85;
  margin: 0;
  max-width: 380px;
}
.showcase-code {
  background: #252d23;
  border: 1px solid #394433;
  border-radius: 11px;
  overflow: hidden;
  min-width: 0;
  flex: 1;
}
.showcase-code-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #ffffff12;
  gap: 14px;
}
.showcase-code-head .segmented {
  border: 0;
  background: none;
  padding: 0;
  gap: 0;
}
.showcase-code-head .segmented button {
  color: #8e9c80;
  font-size: 9px;
  padding: 6px 10px;
}
.showcase-code-head .segmented button.active {
  color: #ddf1bf;
  background: #45523b;
}
.showcase-code-head .icon-btn {
  height: 27px;
  width: 27px;
  border-color: #ffffff20;
  color: #abbc97;
}
.showcase-code-head .icon {
  width: 13px;
  height: 13px;
}
.showcase-code pre {
  padding: 15px 18px;
  font-size: 9px;
  line-height: 1.85;
  color: #c7d8b7;
  margin: 0;
  min-height: 268px;
  max-height: 343px;
  white-space: pre-wrap;
  overflow: auto;
}
.showcase-code-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #ffffff12;
  font-size: 8px;
  color: #8d9d7f;
}
.showcase-code-foot > span:last-child {
  font-size: 8px;
  color: #adba9f;
}
.showcase-request > .btn {
  align-self: flex-start;
  margin-top: 20px;
  font-size: 10px;
  min-height: 38px;
  padding: 8px 16px;
}
.showcase-output {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #eef0e4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.showcase-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 19px;
  gap: 16px;
}
.illustration-note {
  font-size: 8px;
  color: #a0a78f;
}
.demo-image {
  position: relative;
  min-height: 441px;
  height: 100%;
  flex: 1;
}
.demo-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.demo-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  padding: 44px 19px 18px;
  background: linear-gradient(transparent, #162414b3);
  color: #fafcf5;
  font-size: 8px;
}
.demo-image-caption .pill {
  background: #ffffffd4;
  color: #36402e;
  backdrop-filter: blur(6px);
  font-size: 8px;
  gap: 7px;
  padding: 6px 9px;
}
.demo-image-caption .icon {
  width: 12px;
  height: 12px;
}
.media-play {
  width: 59px;
  height: 59px;
}
.demo-sound {
  flex: 1;
  min-height: 441px;
  padding: 46px 33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, #cedcbe80, transparent 60%);
  text-align: center;
}
.sound-disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 103px;
  height: 103px;
  border: 1px solid #c4d1b5;
  border-radius: 50%;
  background: #dce7ce;
  box-shadow:
    0 0 0 16px #e2e9d955,
    0 0 0 33px #e3e9db55;
  margin: 10px 0 44px;
}
.sound-disc .icon {
  width: 36px;
  height: 36px;
  color: #7a9163;
}
.demo-sound .soundwave {
  height: 69px;
  margin: 23px 0 25px;
}
.demo-sound h3 {
  font-size: 27px;
  margin-bottom: 13px;
}
.demo-sound p {
  font-size: 11px;
  line-height: 1.85;
  color: #8b977d;
}
.demo-writing {
  padding: 53px 35px;
  min-height: 441px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: repeating-linear-gradient(
    #ecf0e300,
    #ecf0e300 38px,
    #d6dfc555 39px,
    #d6dfc555 40px
  );
  flex: 1;
}
.writing-lines {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin: 36px 0 50px;
}
.writing-lines span {
  font-size: 29px;
  line-height: 1.24;
  letter-spacing: -0.045em;
  color: #3b4c2e;
}
.writing-lines span:nth-child(2) {
  color: #849676;
}
.writing-lines span:nth-child(3) {
  color: #a1b392;
}
.writing-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #94a184;
  line-height: 1.7;
}
.writing-foot .icon {
  width: 15px;
  height: 15px;
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
}
.usecase-card {
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #e2e8d8;
}
.usecase-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.usecase-fashion > img {
  object-position: 55% center;
}
.usecase-product > img {
  object-position: center top;
}
.usecase-motion > img {
  object-position: center 35%;
}
.usecase-overlay {
  position: absolute;
  inset: 0;
  padding: 24px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(transparent 20%, #182615c4 100%);
  color: #fff;
}
.usecase-overlay > .mono {
  font-size: 8px;
  letter-spacing: 0.075em;
  color: #ffffffc2;
  margin-bottom: 13px;
}
.usecase-overlay h3 {
  font-size: 31px;
  line-height: 1.07;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}
.usecase-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  border-top: 1px solid #ffffff45;
  border-radius: 0;
  width: 100%;
  padding: 14px 0 0;
  color: #fff;
  text-align: left;
  font-size: 10px;
}
.usecase-link .icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.usecase-card.usecase-product .usecase-overlay {
  background: linear-gradient(transparent 20%, #716723b8 100%);
}
.gallery-caption {
  font-size: 9px;
  color: #929e82;
  margin: 16px 0 0;
}
.catalog-note {
  display: flex;
  align-items: center;
  gap: 17px;
}
.catalog-count {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 420;
  color: #7d9269;
}
.catalog-note p {
  font-size: 10px;
  color: #89957b;
  line-height: 1.8;
  margin: 0;
}
.public-price-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.public-price-filters > .link-btn {
  margin-left: auto;
  font-size: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.public-price-filters > .link-btn .icon {
  width: 14px;
  height: 14px;
}
.public-price-panel {
  border: 1px solid #dbe1d0;
  border-radius: 15px;
  overflow: hidden;
  background: #fbfcf5;
}
.public-price-table th {
  font-size: 9px;
  text-transform: none;
  letter-spacing: 0;
  padding: 18px 22px;
  background: #f2f5e9;
}
.public-price-table td {
  padding: 18px 22px;
  font-size: 11px;
}
.price-model {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 170px;
}
.price-model .model-symbol {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.price-model .model-symbol .icon {
  width: 17px;
  height: 17px;
}
.price-model strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3px;
}
.price-model .mono {
  font-size: 8px;
  color: #99a38d;
}
.public-price-table td:nth-child(2) {
  font-size: 10px;
  line-height: 1.8;
}
.public-price-table td:nth-child(2) .small-text {
  font-size: 9px;
}
.public-price-table .pill {
  font-size: 8px;
  padding: 5px 9px;
}
.public-price-table .icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.public-price-table .icon-btn .icon {
  width: 14px;
  height: 14px;
}
.price-pending {
  font-size: 10px;
  color: #96a085;
  white-space: nowrap;
}
.expand-models {
  margin-top: 9px;
  width: 100%;
  background: #edf1e3;
  border: 1px solid #dce3cf;
  border-radius: 9px;
  padding: 14px;
  font-size: 10px;
  color: #798b64;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.expand-models .icon {
  width: 13px;
  height: 13px;
}
.expand-models:hover {
  background: #e1e9d2;
}
.pricing-honesty {
  font-size: 9px;
  line-height: 1.8;
  color: #929d84;
  margin: 15px 0 0;
  display: flex;
  gap: 9px;
  align-items: center;
}
.pricing-honesty .icon {
  width: 13px;
  height: 13px;
  flex: none;
}
.control-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #242e23;
  color: #e9efdf;
  margin-top: 96px;
  border-radius: 19px;
  padding: 47px 43px;
  gap: 50px;
}
.control-intro .eyebrow {
  color: #9da993;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.control-intro .eyebrow:before {
  background: #b3c696;
}
.control-intro h2 {
  font-size: 43px;
  letter-spacing: -0.058em;
  line-height: 1.12;
  margin: 26px 0 35px;
}
.control-intro h2 span {
  color: #b7d197;
}
.control-intro .btn {
  font-size: 11px;
  min-height: 43px;
  padding: 10px 19px;
}
.control-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.control-features article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid #ffffff14;
  padding: 0 0 24px;
}
.control-features article:last-child {
  border: 0;
  padding-bottom: 0;
}
.control-icon {
  background: #ffffff08;
  border: 1px solid #ffffff13;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex: none;
  color: #b4c79c;
}
.control-icon .icon {
  width: 17px;
  height: 17px;
}
.control-features h3 {
  font-size: 19px;
  margin: 4px 0 10px;
  letter-spacing: -0.03em;
  color: #f0f4e9;
}
.control-features p {
  font-size: 11px;
  line-height: 1.85;
  color: #9da991;
  margin: 0 0 11px;
  max-width: 380px;
}
.control-features a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: #c3dba5;
}
.control-features a .icon {
  width: 13px;
  height: 13px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 93px;
}
.faq-section h2 {
  font-size: 39px;
  line-height: 1.15;
  letter-spacing: -0.053em;
  margin: 0 0 19px;
}
.faq-section h2 span {
  color: #7e8e6d;
}
.faq-section > .eyebrow {
  font-size: 9px;
}
.faq-section > div > p {
  font-size: 12px;
  color: #919e82;
  margin-bottom: 26px;
}
.faq-section .btn {
  font-size: 10px;
  min-height: 39px;
  padding: 9px 16px;
}
.faq-list details {
  border-top: 1px solid #dce2d1;
}
.faq-list details:last-child {
  border-bottom: 1px solid #dce2d1;
}
.faq-list summary {
  padding: 22px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > .mono {
  font-size: 8px;
  color: #a0aa91;
  font-weight: 400;
}
.faq-plus {
  font-size: 20px;
  font-weight: 300;
  color: #94a380;
  margin-left: auto;
  transition: transform 0.2s;
}
.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}
.faq-list details > p {
  margin: 0;
  padding: 0 22px 25px 30px;
  font-size: 11px;
  line-height: 1.9;
  color: #839275;
}
.new-final-cta {
  text-align: center;
  background: #e4eccf;
  border: 1px solid #d4dfbe;
  border-radius: 22px;
  padding: 53px 25px 41px;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}
.new-final-cta > *:not(.cta-orbit) {
  position: relative;
  z-index: 1;
}
.new-final-cta .eyebrow {
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #879b6a;
}
.new-final-cta .eyebrow:before {
  background: #99b074;
}
.new-final-cta h2 {
  font-size: 68px;
  line-height: 1.01;
  letter-spacing: -0.065em;
  margin: 19px 0 20px;
}
.new-final-cta h2 em {
  font-style: normal;
  color: #7c965f;
}
.new-final-cta p {
  font-size: 12px;
  color: #869870;
  margin-bottom: 23px;
}
.new-final-cta .btn {
  min-height: 44px;
  font-size: 11px;
  padding: 11px 21px;
}
.cta-footnote {
  display: block;
  margin-top: 24px;
  font-size: 8px;
  color: #99a988;
}
.cta-orbit {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 790px;
  height: 310px;
  border: 1px solid #becf9b77;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-23deg);
  box-shadow:
    0 0 0 65px #d1ddb740,
    0 0 0 130px #d6e1c040;
  pointer-events: none;
}
.new-public-footer {
  max-width: 1224px;
  padding: 0 32px;
  margin: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
  padding: 0 0 43px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-top .brand {
  font-size: 23px;
  gap: 11px;
  margin-bottom: 2px;
}
.footer-top p {
  font-size: 10px;
  line-height: 1.9;
  color: #919d82;
  margin: 6px 0 0;
}
.footer-caption {
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #8e9a81;
  margin-bottom: 7px;
}
.footer-top > div > a:not(.brand),
.footer-top button {
  font-size: 10px;
  color: #88967b;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: 0;
}
.footer-top a:hover,
.footer-top button:hover {
  color: #445a32;
}
.footer-top .icon {
  width: 11px;
  height: 11px;
}
.footer-bottom {
  border-top: 1px solid #dce2d1;
  padding: 19px 0 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #9aa58f;
  font-size: 8px;
}
.footer-bottom .mono {
  font-size: 7px;
  letter-spacing: 0.06em;
}
.preview-film {
  display: block;
  width: 100%;
  max-height: 65dvh;
  background: #171f17;
  border-radius: 10px;
}
.preview-caption {
  font-size: 10px !important;
  line-height: 1.8;
  color: #8a967e;
  margin-top: 14px;
}
.reference-control {
  border: 1px dashed #c9d4bc;
  background: #f0f4e8;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
}
.reference-control label {
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.reference-control input {
  font-size: 10px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 35px;
}
.reference-control .help {
  font-size: 9px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.8;
}
.reference-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 11px;
}
.reference-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: #fff;
  border: 1px solid #dbe4ce;
  border-radius: 7px;
  font-size: 9px;
  min-width: 0;
}
.reference-item > span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reference-item .icon-btn {
  width: 25px;
  height: 25px;
  border: 0;
}
.reference-item .icon {
  width: 13px;
  height: 13px;
}
.reference-item img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  border-radius: 5px;
}
.poll-recovery {
  padding: 17px;
  border-top: 1px solid var(--line);
}
.poll-recovery .btn {
  font-size: 10px;
  margin-right: 8px;
}
.field-label-required {
  color: #819665;
  margin-left: 4px;
}
@media (max-width: 1100px) {
  .api-public-header {
    padding: 0 33px;
  }
  .api-public-header .public-nav {
    gap: 20px;
  }
  .new-landing-main,
  .new-public-footer {
    padding: 0 28px;
  }
  .story-hero h1 {
    font-size: 77px;
  }
  .creation-stage {
    max-width: 880px;
    height: 420px;
  }
  .stage-portrait {
    width: 201px;
    height: 281px;
    left: 6px;
    top: 35px;
  }
  .stage-main {
    width: 350px;
    height: 325px;
  }
  .stage-motion {
    width: 200px;
    height: 277px;
    right: 10px;
  }
  .stage-request {
    left: 58px;
    bottom: 49px;
    width: 275px;
  }
  .stage-sound {
    right: 29px;
    width: 183px;
  }
  .new-section {
    padding-top: 78px;
  }
  .new-section-head h2 {
    font-size: 40px;
  }
  .showcase-request {
    padding: 22px;
  }
  .showcase-code pre {
    font-size: 8px;
  }
  .showcase-request-intro h3 {
    font-size: 21px;
  }
  .usecase-card {
    height: 340px;
  }
  .usecase-overlay {
    padding: 21px;
  }
  .usecase-overlay h3 {
    font-size: 28px;
  }
  .control-section {
    padding: 40px 33px;
    gap: 33px;
    margin-top: 77px;
  }
  .control-intro h2 {
    font-size: 39px;
  }
  .control-features h3 {
    font-size: 17px;
  }
  .faq-section {
    gap: 36px;
    margin-bottom: 77px;
  }
  .faq-section h2 {
    font-size: 35px;
  }
  .new-final-cta h2 {
    font-size: 62px;
  }
}
@media (max-width: 820px) {
  .api-public-header {
    padding: 0 26px;
    height: 81px;
  }
  .api-public-header .public-nav {
    gap: 14px;
    font-size: 10px;
  }
  .api-public-header .brand {
    font-size: 20px;
  }
  .api-public-header .btn {
    font-size: 10px;
    padding: 9px 14px;
    min-height: 37px;
  }
  .new-landing-main,
  .new-public-footer {
    padding: 0 25px;
  }
  .story-hero {
    padding-top: 42px;
  }
  .story-hero h1 {
    font-size: 68px;
  }
  .story-lead {
    font-size: 13px;
  }
  .hero-overline {
    font-size: 8px;
    margin-bottom: 24px;
  }
  .creation-stage {
    height: 365px;
    margin-top: 33px;
  }
  .stage-main {
    width: 310px;
    height: 275px;
  }
  .stage-portrait {
    width: 164px;
    height: 236px;
    top: 33px;
    left: 0;
  }
  .stage-motion {
    width: 164px;
    height: 234px;
    top: 48px;
    right: 0;
  }
  .stage-request {
    width: 254px;
    left: 19px;
    bottom: 38px;
    padding: 14px 16px;
  }
  .stage-request code {
    font-size: 10px;
  }
  .stage-request-line {
    font-size: 8px;
  }
  .stage-sound {
    right: 11px;
    top: 6px;
    width: 166px;
    padding: 10px 13px;
  }
  .stage-note {
    bottom: 0;
    font-size: 8px;
  }
  .possibility-strip {
    padding: 20px 0;
    margin-top: 15px;
  }
  .possibility-strip > a {
    font-size: 11px;
    gap: 9px;
  }
  .possibility-strip > a > .icon:last-child {
    margin-left: 5px;
  }
  .new-section-head h2 {
    font-size: 34px;
  }
  .new-section-head > p {
    font-size: 10px;
    max-width: 220px;
  }
  .new-section-head {
    gap: 20px;
    margin-bottom: 29px;
  }
  .showcase-grid {
    gap: 14px;
  }
  .showcase-request {
    padding: 19px;
  }
  .showcase-request-intro h3 {
    font-size: 19px;
  }
  .showcase-request-intro p {
    font-size: 10px;
  }
  .showcase-request > .btn {
    font-size: 9px;
    padding: 8px 12px;
    min-height: 36px;
  }
  .showcase-code-head {
    padding: 10px;
  }
  .showcase-code-head .segmented button {
    font-size: 8px;
    padding: 5px 7px;
  }
  .showcase-code-head .icon-btn {
    width: 24px;
    height: 24px;
  }
  .showcase-code pre {
    padding: 15px 13px;
    font-size: 8px;
    line-height: 1.85;
    min-height: 241px;
    max-height: 294px;
  }
  .showcase-code-foot {
    padding: 11px;
    font-size: 7px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .showcase-code-foot > span:last-child {
    font-size: 7px;
  }
  .showcase-output-head {
    padding: 15px;
  }
  .illustration-note {
    font-size: 7px;
  }
  .demo-index {
    font-size: 7px;
  }
  .demo-image {
    min-height: 438px;
  }
  .usecase-grid {
    gap: 13px;
  }
  .usecase-card {
    height: 320px;
  }
  .usecase-overlay {
    padding: 19px 16px;
  }
  .usecase-overlay h3 {
    font-size: 25px;
  }
  .usecase-overlay > .mono {
    font-size: 6px;
  }
  .usecase-link {
    font-size: 8px;
    gap: 5px;
  }
  .usecase-link .icon {
    width: 13px;
    height: 13px;
  }
  .public-price-table td,
  .public-price-table th {
    padding: 16px;
  }
  .public-price-table td:nth-child(2) {
    display: none;
  }
  .public-price-table th:nth-child(2) {
    display: none;
  }
  .price-model {
    min-width: 155px;
    gap: 11px;
  }
  .price-model strong {
    font-size: 11px;
  }
  .price-model .mono {
    font-size: 7px;
  }
  .price-pending {
    font-size: 9px;
  }
  .catalog-count {
    font-size: 39px;
  }
  .catalog-note p {
    font-size: 9px;
  }
  .control-section {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 25px;
    padding: 35px 27px;
  }
  .control-intro h2 {
    font-size: 33px;
  }
  .control-features article {
    gap: 13px;
  }
  .control-icon {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }
  .control-features h3 {
    font-size: 16px;
  }
  .control-features p {
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 0.95fr 1.2fr;
    gap: 27px;
  }
  .faq-section h2 {
    font-size: 30px;
  }
  .faq-section > div > p {
    font-size: 10px;
  }
  .faq-section .btn {
    font-size: 9px;
    padding: 8px 12px;
  }
  .faq-list summary {
    font-size: 11px;
    gap: 10px;
    padding: 19px 0;
  }
  .faq-list details > p {
    font-size: 10px;
    padding-left: 22px;
  }
  .demo-writing {
    padding: 40px 24px;
  }
  .writing-lines span {
    font-size: 24px;
  }
  .demo-sound {
    padding: 36px 23px;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-top .brand {
    font-size: 21px;
  }
  .footer-caption {
    font-size: 7px;
  }
  .footer-top > div > a:not(.brand),
  .footer-top button {
    font-size: 9px;
  }
}
@media (max-width: 640px) {
  .api-public-header {
    padding: 0 21px;
    height: 74px;
  }
  .api-public-header .brand {
    font-size: 20px;
  }
  .api-public-header .public-nav {
    display: none;
  }
  .api-public-header .btn {
    font-size: 9px;
    padding: 9px 13px;
    gap: 7px;
  }
  .api-public-header .btn .icon {
    width: 14px;
    height: 14px;
  }
  .new-landing-main,
  .new-public-footer {
    padding: 0 21px;
  }
  .story-hero {
    padding-top: 35px;
  }
  .hero-overline {
    font-size: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 21px;
    gap: 9px;
  }
  .hero-overline-symbol {
    font-size: 17px;
  }
  .story-hero h1 {
    font-size: clamp(51px, 11.9vw, 71px);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.068em;
  }
  .story-lead {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .story-hero .hero-actions {
    gap: 9px;
  }
  .story-hero .hero-actions .btn {
    min-height: 41px;
    font-size: 10px;
    padding: 10px 15px;
    gap: 8px;
  }
  .story-hero .hero-actions .btn .icon {
    width: 15px;
    height: 15px;
  }
  .creation-stage {
    height: 309px;
    margin-top: 31px;
    width: calc(100% + 18px);
    margin-left: -9px;
  }
  .stage-card {
    border: 3px solid #fff;
    border-radius: 13px;
  }
  .stage-main {
    width: 210px;
    height: 248px;
    top: 0;
    transform: translateX(-50%) rotate(2deg);
  }
  .stage-main figcaption {
    font-size: 8px;
    padding: 24px 11px 11px;
  }
  .stage-main figcaption .icon {
    width: 13px;
    height: 13px;
  }
  .stage-portrait {
    width: 133px;
    height: 196px;
    top: 29px;
    left: -17px;
    transform: rotate(-8deg);
  }
  .stage-motion {
    width: 131px;
    height: 188px;
    top: 43px;
    right: -14px;
    transform: rotate(8deg);
  }
  .stage-motion figcaption,
  .stage-portrait figcaption {
    font-size: 6px;
    padding: 24px 10px 11px;
  }
  .stage-play {
    width: 33px;
    height: 33px;
  }
  .stage-play .icon {
    width: 15px;
    height: 15px;
  }
  .stage-request {
    width: 229px;
    left: 3px;
    bottom: 23px;
    padding: 12px 14px;
    border-radius: 9px;
    transform: rotate(-2deg);
  }
  .stage-request-label {
    font-size: 6px;
    margin-bottom: 7px;
  }
  .stage-request code {
    font-size: 9px;
  }
  .stage-request code span {
    font-size: 6px;
  }
  .stage-request-line {
    font-size: 7px;
    margin-top: 7px;
  }
  .stage-sound {
    width: 137px;
    right: -1px;
    top: -7px;
    padding: 8px 10px;
    border-radius: 9px;
  }
  .stage-sound > span {
    font-size: 5px;
    gap: 4px;
  }
  .stage-sound .icon {
    width: 11px;
    height: 11px;
  }
  .stage-sound .soundwave {
    height: 22px;
    margin-top: 3px;
    gap: 1px;
  }
  .stage-note {
    font-size: 6px;
    bottom: -5px;
    line-height: 1.6;
  }
  .possibility-strip {
    margin-top: 24px;
    padding: 15px 0;
    gap: 0;
  }
  .possibility-strip > a {
    font-size: 9px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .possibility-strip > a > .mono {
    display: none;
  }
  .possibility-strip > a > .icon {
    width: 13px;
    height: 13px;
  }
  .possibility-strip > a > .icon:last-child {
    display: none;
  }
  .new-section {
    padding-top: 60px;
  }
  .new-section-head {
    display: block;
    margin-bottom: 25px;
  }
  .new-section-head .eyebrow {
    font-size: 8px;
    margin-bottom: 16px;
    letter-spacing: 0.11em;
  }
  .new-section-head h2 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.057em;
  }
  .new-section-head > p {
    font-size: 11px;
    margin-top: 16px;
    max-width: 290px;
  }
  .creation-tabs {
    gap: 2px;
    padding: 4px;
    margin-bottom: 17px;
    width: 100%;
    justify-content: space-between;
  }
  .creation-tabs button {
    padding: 8px 12px;
    font-size: 9px;
    gap: 6px;
    min-height: 35px;
  }
  .creation-tabs .icon {
    width: 13px;
    height: 13px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .showcase-request {
    padding: 20px;
    border-radius: 14px;
  }
  .showcase-request-intro h3 {
    font-size: 22px;
    margin-top: 11px;
  }
  .showcase-request-intro p {
    font-size: 11px;
    max-width: none;
  }
  .showcase-code-head {
    padding: 10px 12px;
  }
  .showcase-code-head .segmented button {
    font-size: 9px;
    padding: 6px 10px;
  }
  .showcase-code pre {
    font-size: 9px;
    min-height: 220px;
    max-height: 290px;
    padding: 16px;
  }
  .showcase-code-foot {
    font-size: 8px;
    padding: 12px 13px;
  }
  .showcase-code-foot > span:last-child {
    font-size: 7px;
  }
  .showcase-request > .btn {
    font-size: 10px;
    min-height: 37px;
    margin-top: 17px;
  }
  .showcase-output {
    border-radius: 14px;
  }
  .showcase-output-head {
    padding: 15px 17px;
  }
  .demo-image {
    min-height: 320px;
  }
  .demo-image > img {
    object-position: center 45%;
  }
  .demo-image-caption {
    padding: 40px 17px 16px;
    font-size: 7px;
  }
  .demo-image-caption .pill {
    font-size: 7px;
    padding: 6px 8px;
  }
  .demo-sound {
    min-height: 360px;
    padding: 33px;
  }
  .demo-sound .soundwave {
    max-width: 300px;
    height: 60px;
  }
  .demo-sound h3 {
    font-size: 25px;
  }
  .sound-disc {
    width: 80px;
    height: 80px;
    margin: 3px 0 30px;
    box-shadow:
      0 0 0 11px #e2e9d955,
      0 0 0 23px #e3e9db55;
  }
  .sound-disc .icon {
    width: 29px;
    height: 29px;
  }
  .demo-writing {
    min-height: 340px;
    padding: 35px 25px;
  }
  .writing-lines {
    margin: 29px 0 34px;
    gap: 24px;
  }
  .writing-lines span {
    font-size: 27px;
  }
  .usecase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .usecase-card {
    height: 279px;
  }
  .usecase-card:first-child {
    grid-column: 1/-1;
    height: 313px;
  }
  .usecase-card:first-child > img {
    object-position: center 42%;
  }
  .usecase-overlay {
    padding: 21px 17px;
  }
  .usecase-overlay h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .usecase-card:first-child .usecase-overlay h3 {
    font-size: 34px;
  }
  .usecase-overlay > .mono {
    font-size: 6px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .usecase-link {
    font-size: 8px;
    line-height: 1.5;
    padding-top: 12px;
  }
  .gallery-caption {
    font-size: 8px;
    line-height: 1.7;
    margin-top: 13px;
  }
  .catalog-note {
    margin-top: 23px;
    gap: 12px;
  }
  .catalog-count {
    font-size: 36px;
  }
  .catalog-note p {
    font-size: 9px;
  }
  .public-price-filters {
    gap: 6px;
    margin-bottom: 15px;
  }
  .public-price-filters .filter-btn {
    font-size: 9px;
    padding: 7px 11px;
  }
  .public-price-filters > .link-btn {
    margin-left: 0;
    width: 100%;
    margin-top: 9px;
    font-size: 9px;
  }
  .public-price-table th,
  .public-price-table td {
    padding: 15px 12px;
  }
  .public-price-table th {
    font-size: 8px;
  }
  .public-price-table td:nth-child(3),
  .public-price-table th:nth-child(3) {
    display: none;
  }
  .public-price-table td:nth-child(5),
  .public-price-table th:nth-child(5) {
    display: none;
  }
  .price-model {
    min-width: 0;
    gap: 8px;
  }
  .price-model strong {
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 2px;
  }
  .price-model .mono {
    font-size: 6px;
    overflow-wrap: anywhere;
  }
  .price-model .model-symbol {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    flex: none;
  }
  .price-model .model-symbol .icon {
    width: 14px;
    height: 14px;
  }
  .price-pending {
    font-size: 8px;
    white-space: normal;
  }
  .public-price-table td:last-of-type {
    font-size: 9px;
  }
  .expand-models {
    font-size: 9px;
    padding: 12px;
  }
  .pricing-honesty {
    font-size: 8px;
    align-items: flex-start;
    gap: 7px;
    margin-top: 13px;
  }
  .pricing-honesty .icon {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
  .control-section {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 60px;
    padding: 31px 25px;
    border-radius: 16px;
  }
  .control-intro h2 {
    font-size: 36px;
    margin: 20px 0 24px;
  }
  .control-intro .eyebrow {
    font-size: 8px;
  }
  .control-intro .btn {
    font-size: 10px;
    min-height: 41px;
  }
  .control-features article {
    padding-bottom: 23px;
    gap: 14px;
  }
  .control-features h3 {
    font-size: 17px;
    line-height: 1.2;
    margin: 4px 0 10px;
  }
  .control-features p {
    font-size: 10px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .control-features a {
    font-size: 9px;
  }
  .control-icon {
    width: 31px;
    height: 31px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 60px;
  }
  .faq-section h2 {
    font-size: 33px;
  }
  .faq-section > div > p {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .faq-section .btn {
    font-size: 10px;
    min-height: 39px;
  }
  .faq-list summary {
    font-size: 11px;
    padding: 21px 0;
    gap: 13px;
  }
  .faq-list details > p {
    font-size: 11px;
    padding: 0 10px 23px 26px;
  }
  .new-final-cta {
    padding: 38px 16px 30px;
    border-radius: 16px;
    margin-bottom: 44px;
  }
  .new-final-cta h2 {
    font-size: 55px;
    margin: 18px 0 18px;
  }
  .new-final-cta p {
    font-size: 10px;
  }
  .new-final-cta .eyebrow {
    font-size: 7px;
  }
  .new-final-cta .btn {
    font-size: 10px;
    min-height: 41px;
  }
  .cta-footnote {
    font-size: 6px;
    margin-top: 22px;
  }
  .cta-orbit {
    width: 540px;
    height: 230px;
    box-shadow:
      0 0 0 48px #d1ddb740,
      0 0 0 95px #d6e1c040;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 26px 25px;
    padding-bottom: 30px;
  }
  .footer-top > div {
    gap: 9px;
  }
  .footer-top .brand {
    font-size: 22px;
  }
  .footer-top p {
    font-size: 9px;
    margin-top: 4px;
  }
  .footer-caption {
    font-size: 7px;
    margin-bottom: 6px;
  }
  .footer-top > div > a:not(.brand),
  .footer-top button {
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 7px;
    gap: 10px;
    flex-wrap: wrap;
    padding: 17px 0 25px;
  }
  .footer-bottom > .mono {
    font-size: 6px;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 370px) {
  .new-landing-main,
  .new-public-footer {
    padding: 0 17px;
  }
  .api-public-header {
    padding: 0 17px;
  }
  .api-public-header .brand {
    font-size: 18px;
  }
  .api-public-header .btn {
    padding: 8px 11px;
    font-size: 8px;
  }
  .api-public-header .brand-mark {
    width: 23px;
    height: 23px;
    border-width: 6px;
  }
  .story-hero h1 {
    font-size: 51px;
  }
  .stage-main {
    width: 198px;
  }
  .stage-portrait {
    width: 118px;
    left: -12px;
  }
  .stage-motion {
    width: 118px;
    right: -12px;
  }
  .stage-sound {
    width: 126px;
    right: -1px;
  }
  .stage-request {
    width: 217px;
    left: 0;
  }
  .creation-tabs button {
    font-size: 8px;
    padding: 8px 9px;
    gap: 5px;
  }
  .creation-tabs .icon {
    width: 12px;
    height: 12px;
  }
  .new-section-head h2 {
    font-size: 30px;
  }
  .usecase-card {
    height: 257px;
  }
  .usecase-overlay {
    padding: 18px 13px;
  }
  .usecase-overlay h3 {
    font-size: 22px;
  }
  .usecase-overlay > .mono {
    font-size: 5px;
  }
  .usecase-link {
    font-size: 7px;
  }
  .showcase-request {
    padding: 17px;
  }
  .showcase-request-intro h3 {
    font-size: 21px;
  }
  .showcase-code pre {
    font-size: 8px;
  }
  .public-price-table th,
  .public-price-table td {
    padding: 14px 10px;
  }
  .price-model strong {
    font-size: 9px;
  }
  .price-pending {
    font-size: 7px;
  }
}
