:root {
  --paper: #f5f2ea;
  --white: #fffef9;
  --ink: #122b37;
  --muted: #55646a;
  --copper: #28685e;
  --copper-hover: #1c5149;
  --peach: #e3ece5;
  --line: #d9d9ce;
  --green: #37684b;
  --sans: Inter, 'Segoe UI', Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: 'Cascadia Code', Consolas, monospace;
  --radius: 12px;
}
.lab-intro {
  padding-block: 48px 0;
}
.lab-intro h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-block: 12px;
}
.lab-intro > p:last-child {
  color: var(--muted);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
[hidden] {
  display: none !important;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}
button,
a,
input,
textarea,
summary {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 5px;
}
::selection {
  background: #e5bca4;
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.06;
}
h1 em,
h2 em {
  color: var(--copper);
  font-weight: 400;
}
h2 {
  font-size: clamp(38px, 4.4vw, 59px);
}
h3 {
  font-size: 22px;
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
pre {
  margin: 0;
  max-width: 100%;
  overflow: auto;
  tab-size: 2;
}
code {
  font-family: var(--mono);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
  line-height: 1.6;
}
.micro {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.short-line {
  width: 22px;
  height: 1px;
  background: currentColor;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--copper);
  border: 1px solid var(--copper);
  color: var(--white);
  padding: 13px 23px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  transition:
    background 0.16s,
    transform 0.16s;
}
.button:hover:not(:disabled) {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  transform: translateY(-1px);
}
.button > span[aria-hidden] {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 12px;
  gap: 18px;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: #b6b9ac;
}
.button-outline:hover:not(:disabled) {
  color: var(--white);
}
.button-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button-quiet:hover:not(:disabled) {
  color: var(--white);
}
.text-link {
  border: 0;
  border-radius: 2px;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  padding: 9px 0;
}
.text-link:hover {
  color: var(--copper);
}
.text-link span[aria-hidden] {
  font-size: 19px;
  font-weight: 400;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.announcement {
  min-height: 38px;
  background: #e8c47a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.4;
  padding: 4px 20px;
}
.announcement a {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcement a:hover {
  text-decoration: underline;
}
.announcement-divider {
  color: #73766c;
  margin: 0 6px;
}
.status-dot {
  display: inline-block;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #122b37;
  color: #f5f2ea;
  border-bottom: 1px solid #ffffff20;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  min-height: 44px;
  white-space: nowrap;
}
.brand-suffix {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.5px;
  margin-left: 7px;
  vertical-align: middle;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  flex: 1;
}
.navigation a {
  font-size: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navigation a:hover {
  color: #e8c47a;
}
.nav-docs {
  display: none !important;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  min-height: 44px;
  padding: 9px 12px;
}
.hero-sea {
  background: radial-gradient(ellipse at 80% 40%, #214452, transparent 65%), #122b37;
  color: #f5f2ea;
}
.hero-sea .eyebrow,
.hero-sea h1 em,
.hero-sea .stage-note {
  color: #e8c47a;
}
.hero-sea .hero-description,
.hero-sea .hero-footnote,
.hero-sea .stage-index {
  color: #c2d0d2;
}
.hero-sea .button,
.site-header .header-cta {
  background: #e8c47a;
  border-color: #e8c47a;
  color: #122b37;
}
.hero-sea .button:hover,
.site-header .header-cta:hover {
  background: #f4d99f;
  border-color: #f4d99f;
}
.hero-sea .text-link:hover {
  color: #e8c47a;
}
.hero-sea :focus-visible,
.site-header :focus-visible {
  outline-color: #e8c47a;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-block: 76px 84px;
}
.hero-copy {
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}
.hero-description {
  max-width: 440px;
  font-size: 16px;
  color: var(--muted);
  margin-top: 27px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.hero-footnote {
  font-size: 11px;
  color: var(--muted);
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.hero-stage {
  height: 535px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: clip;
}
.stage-grid {
  position: absolute;
  inset: 5px -10px 0 0;
  background-image:
    linear-gradient(#91c4b916 1px, transparent 1px),
    linear-gradient(90deg, #91c4b916 1px, transparent 1px);
  background-size: 48px 48px;
  border: 1px solid #91c4b916;
  border-radius: 50%;
}
.orbit {
  border: 1px dashed #e8c47a40;
  border-radius: 50%;
  position: absolute;
  inset: 25px 12px;
  transform: rotate(-25deg);
}
.orbit-two {
  inset: 70px -8px;
  transform: rotate(30deg);
}
.stage-note {
  position: absolute;
  top: 5px;
  left: 38px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--copper);
}
.conversation-preview {
  position: relative;
  width: calc(100% - 50px);
  background: #0c202a;
  color: #f4f1e7;
  box-shadow:
    12px 16px 0 #91c4b914,
    0 24px 50px #06101855;
  border-radius: 11px;
  transform: none;
  overflow: hidden;
}
.window-bar {
  height: 46px;
  border-bottom: 1px solid #ffffff1c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: var(--mono);
  font-size: 10px;
  color: #c2c6bc;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a4aca3;
}
.window-dots i:first-child {
  background: #cc8f70;
}
.window-mark {
  font-size: 20px;
  color: #c6a88e;
}
.conversation-body {
  padding: 27px 30px 22px;
  font-size: 13px;
  line-height: 1.8;
}
.message-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 9px;
}
.conversation-body .message-label {
  color: #b4bcae;
}
.example-question {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.assistant-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #d8bb9b;
  margin: 26px 0 13px;
}
.muted-on-dark {
  color: #b9c0b8;
  margin-top: 11px;
}
.example-final {
  margin-top: 14px;
  color: #e6b492;
}
.cursor {
  display: inline-block;
  width: 5px;
  height: 13px;
  background: #dfab8c;
  margin-left: 3px;
  vertical-align: -2px;
}
.window-footer {
  border-top: 1px solid #ffffff1c;
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #b9c0b8;
}
.stage-ticket {
  position: absolute;
  right: -1px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px #242d2b08;
  transform: none;
}
.stage-ticket strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}
.stage-ticket div > span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}
.ticket-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eadacc;
  color: var(--copper);
  font-size: 26px;
}
.stage-index {
  position: absolute;
  bottom: 0;
  left: 34px;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.compatibility-band {
  border-block: 1px solid var(--line);
}
.compatibility-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  min-height: 111px;
  padding-block: 20px;
}
.compatibility-inner > p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  flex: none;
}
.compatibility-inner > p strong {
  color: var(--ink);
  font-weight: 500;
}
.compatibility-items {
  display: flex;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  gap: 25px;
  border-left: 1px solid var(--line);
  padding-left: 45px;
}
.compatibility-items span {
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.03em;
}
.compatibility-items span:nth-child(2) {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}
.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.85;
}
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}
.use-case {
  border-top: 1px solid #a5ab9b;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
}
.use-case-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}
.use-symbol {
  font-size: 32px;
  color: var(--copper);
  line-height: 1;
}
.serif-symbol {
  font-family: var(--serif);
  font-size: 28px;
}
.use-case p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin-block: 15px 17px;
}
.use-case .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
}
.playground-section {
  padding: 88px 0;
  background: #e9ece2;
  border-block: 1px solid #d6dcce;
}
.playground-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: center;
}
.playground-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 22px;
  max-width: 350px;
  font-size: 14px;
}
.preview-note {
  display: flex;
  gap: 12px;
  margin: 30px 0 22px;
  padding-top: 22px;
  border-top: 1px solid #c9d0c1;
  max-width: 340px;
}
.preview-note .status-dot {
  margin-top: 7px;
}
.preview-note p {
  font-size: 11px;
  line-height: 1.85;
  color: var(--muted);
}
.preview-note strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 5px;
}
.playground {
  background: var(--white);
  border: 1px solid #cbd1c3;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px #28332608;
  min-width: 0;
}
.playground-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.playground-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #c9ccbf;
  border-radius: 4px;
  background: #f1f2e9;
  color: #4c5848;
  font-size: 10px;
  font-family: var(--mono);
  line-height: 1.5;
}
.example-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 20px 24px 10px;
}
.example-selectors button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 5px;
  font-size: 10px;
  padding: 7px 10px;
  min-height: 44px;
}
.example-selectors button[aria-pressed='true'] {
  background: #e9ece2;
  border-color: #b5bfac;
  color: #35482f;
}
.demo-answer {
  margin: 16px 24px 0;
  padding: 20px;
  background: #f4f4ed;
  border-left: 2px solid #b6c0a7;
  min-height: 175px;
  max-height: 380px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.85;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.demo-answer .message-label {
  color: #5c6754;
  margin-bottom: 10px;
}
.demo-status {
  min-height: 38px;
  padding: 9px 24px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}
.demo-metrics {
  margin: 0;
  padding: 0 24px 12px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}
.demo-form {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
}
label,
legend {
  font-size: 12px;
  font-weight: 550;
}
.demo-form label {
  display: block;
  margin-bottom: 8px;
}
textarea,
input[type='number'] {
  width: 100%;
  background: var(--white);
  border: 1px solid #b9bdb1;
  border-radius: 5px;
  padding: 12px;
  color: var(--ink);
  font-size: 14px;
}
textarea {
  resize: vertical;
  min-height: 78px;
  max-height: 240px;
  line-height: 1.6;
}
.demo-form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}
.demo-form-bottom > span {
  font-size: 9px;
  color: var(--muted);
  max-width: 220px;
}
.demo-live-tools {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 0 24px;
}
.demo-live-tools .text-link {
  font-size: 11px;
}
.chat-message + .chat-message {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.chat-message-user {
  color: var(--muted);
}
.api-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.api-layout .section-intro {
  margin-top: 23px;
  max-width: 390px;
}
.feature-list {
  padding: 0;
  list-style: none;
  margin: 25px 0 17px;
}
.feature-list li {
  display: flex;
  gap: 17px;
  padding: 13px 0;
}
.feature-list li > span {
  color: var(--copper);
  font-size: 20px;
  line-height: 1.2;
}
.feature-list strong {
  font-size: 13px;
  font-weight: 600;
}
.feature-list p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.7;
}
.api-sample {
  min-width: 0;
  background: #242d2b;
  color: #eef1e5;
  border-radius: var(--radius);
  overflow: hidden;
}
.code-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid #ffffff26;
}
.code-switch {
  display: flex;
  gap: 8px;
}
.code-switch button,
.copy-button {
  background: transparent;
  color: #c3c9be;
  border: 0;
  border-radius: 4px;
  padding: 9px 11px;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 10px;
}
.code-switch button[aria-pressed='true'] {
  background: #ffffff12;
  color: white;
}
.copy-button:hover,
.code-switch button:hover {
  background: #ffffff12;
  color: white;
}
.api-sample :focus-visible {
  outline-color: #edb38e;
}
.code-file {
  padding: 22px 25px 12px;
  font-family: var(--mono);
  font-size: 9px;
  color: #b9c0b5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.code-file .status-dot {
  background: #9baa83;
}
.api-sample pre {
  padding: 13px 25px 20px;
  font-size: 12px;
  line-height: 1.85;
  color: #e2c7a5;
  min-height: 318px;
  white-space: pre;
}
.code-note {
  font-size: 10px;
  color: #c3c9be;
  padding: 0 25px 25px;
  display: flex;
  gap: 10px;
}
.code-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #303a34;
  border-top: 1px solid #ffffff15;
  padding: 19px 25px;
  font-size: 11px;
  color: #c4cebd;
}
.code-bottom strong {
  display: block;
  font-weight: 500;
  color: #eef1e5;
}
.code-bottom > span:last-child {
  font-size: 23px;
}
.code-bottom:hover {
  background: #3b473e;
}
.pricing-section {
  background: #eee9de;
  border-block: 1px solid #ddd6c7;
}
.pricing-status {
  margin-top: 17px;
  background: #f8f1e5;
  border-color: #ccbaa3;
  color: #755438;
  font-size: 9px;
}
.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 14px;
}
.credit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 32px 28px 27px;
  border: 1px solid #d2cbbb;
  border-radius: 9px;
}
.credit-card .micro {
  font-size: 9px;
}
.credit-card h3 {
  font-size: 22px;
  margin-top: 15px;
}
.credit-price {
  font-family: var(--serif);
  font-size: 58px;
  letter-spacing: -0.04em;
  line-height: 1.3;
  margin: 17px 0 10px;
}
.credit-price > span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
}
.credit-card > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 220px;
  min-height: 45px;
}
.credit-card ul {
  list-style: none;
  padding: 22px 0;
  margin: 22px 0 25px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  flex: 1;
}
.credit-card li {
  padding: 5px 0;
  display: flex;
  gap: 11px;
}
.credit-card li::before {
  content: '↗';
  color: var(--copper);
}
.credit-card .button {
  width: 100%;
  justify-content: space-between;
}
.credit-featured {
  border-color: var(--copper);
  background: #fffcf3;
}
.credit-recommendation {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -24px;
  height: 24px;
  background: var(--copper);
  border-radius: 8px 8px 0 0;
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.credit-featured {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.pricing-disclaimer {
  font-size: 10px;
  max-width: 790px;
  color: var(--muted);
  margin: 23px auto 0;
  text-align: center;
  line-height: 1.8;
}
.estimator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  margin-top: 48px;
  border-top: 1px solid #cac5b8;
  padding-top: 42px;
}
.estimator-description .eyebrow {
  margin-bottom: 12px;
}
.estimator-description h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}
.estimator-description > p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 380px;
}
.rate-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.8;
}
.rate-label strong {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}
.estimate-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.estimate-fields label {
  display: block;
  margin-bottom: 8px;
}
.estimate-fields label > span {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  display: block;
}
.estimate-fields input {
  font-family: var(--mono);
  font-size: 20px;
  min-height: 55px;
  background: #f9f7f0;
}
.estimate-fields input[aria-invalid='true'] {
  border-color: #a42d25;
}
.estimate-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-block: 20px 12px;
  border-bottom: 1px solid #cac5b8;
}
.estimate-result > span {
  font-size: 13px;
  font-weight: 600;
}
.estimate-result small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  margin-top: 3px;
}
.estimate-result output {
  font-family: var(--serif);
  font-size: 39px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.small-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
}
.payment-strip {
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid #d2cbbb;
  border-radius: 7px;
  padding: 20px 24px;
  margin-top: 40px;
}
.usdc-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #e1e7e2;
  color: #3f635c;
  border: 1px solid #b5c3b8;
  border-radius: 50%;
  font-size: 23px;
  font-family: var(--serif);
  flex: none;
}
.payment-strip > div {
  flex: 1;
}
.payment-strip strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.payment-strip div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.payment-strip .text-link {
  font-size: 11px;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.privacy-layout .section-intro {
  margin-top: 23px;
  max-width: 470px;
  font-size: 14px;
}
.privacy-art {
  position: relative;
  background: #e5e8dc;
  padding: 30px;
  aspect-ratio: 0.85;
  border-radius: 3px;
  max-height: 515px;
}
.privacy-frame {
  border: 1px solid #bcc6ae;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 25px 12px 28px;
}
.privacy-frame > .micro {
  font-size: 8px;
  color: #536447;
  letter-spacing: 0.14em;
  text-align: center;
}
.abstract-lock {
  width: 150px;
  height: 190px;
  position: relative;
  margin-block: 35px;
}
.lock-arch {
  width: 100px;
  height: 115px;
  border: 19px solid #a5b396;
  border-radius: 70px 70px 0 0;
  position: absolute;
  left: 25px;
  top: 0;
  transform: rotate(-14deg);
  transform-origin: bottom right;
}
.lock-body {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: 118px;
  background: #5f7454;
  border-radius: 12px;
  box-shadow: 9px 9px 0 #c0c9b3;
  display: grid;
  place-items: center;
}
.lock-body span {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e5e8dc;
}
.lock-body span::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 15px;
  left: 4px;
  top: 8px;
  background: #e5e8dc;
  border-radius: 1px;
}
.privacy-art-caption {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  text-align: center;
}
.privacy-art-caption em {
  color: #526747;
}
.art-corner {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--paper);
  border: 1px solid #9daa91;
}
.corner-one {
  top: 24px;
  left: 24px;
}
.corner-two {
  bottom: 24px;
  right: 24px;
}
.privacy-points {
  margin: 26px 0 20px;
}
.privacy-points > div {
  display: flex;
  gap: 19px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}
.privacy-points > div > span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--copper);
  padding-top: 3px;
}
.privacy-points h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}
.privacy-points p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 7px;
}
.privacy-layout .text-link {
  font-size: 12px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 75px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 22px;
  font-weight: 400;
  color: var(--copper);
  flex: none;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 30px 20px 0;
}
.faq-list p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0 75px;
  background: #e9e0d2;
  border-block: 1px solid #d8cfbf;
}
.closing-cta .container {
  position: relative;
  z-index: 1;
}
.closing-cta h2 {
  font-size: clamp(46px, 5.8vw, 77px);
}
.closing-cta .eyebrow {
  font-size: 10px;
  color: #913921;
}
.closing-cta p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
}
.closing-asterisk {
  position: absolute;
  right: 9%;
  top: -70px;
  font-size: 440px;
  color: #d5bba2;
  font-family: var(--serif);
  line-height: 1.4;
  transform: rotate(12deg);
  user-select: none;
}
.site-footer {
  padding-top: 43px;
  padding-bottom: 26px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 33px;
}
.footer-top > p {
  flex: 1;
  color: var(--muted);
  font-size: 12px;
}
.footer-top .brand {
  font-size: 27px;
}
.footer-top > .text-link {
  font-size: 11px;
}
.footer-bottom {
  padding-top: 21px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom a:hover {
  color: var(--copper);
}
dialog {
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink);
  padding: 26px 32px 25px;
  width: min(540px, calc(100% - 32px));
  max-height: calc(100dvh - 36px);
  overflow: auto;
  box-shadow: 0 20px 90px #14251e40;
}
dialog::backdrop {
  background: #17201acc;
  backdrop-filter: blur(4px);
}
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
}
.checkout-header .eyebrow {
  margin: 0;
  font-size: 9px;
}
.icon-button {
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  min-width: 44px;
  min-height: 44px;
  font-size: 24px;
  line-height: 1;
}
.icon-button:hover {
  background: var(--peach);
}
dialog h2 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
dialog > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
dialog fieldset {
  margin-top: 23px;
}
dialog legend {
  margin-bottom: 11px;
  font-size: 12px;
}
.checkout-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.checkout-amounts label,
.network-options label {
  position: relative;
  cursor: pointer;
}
.checkout-amounts input,
.network-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.checkout-amounts label > span {
  display: block;
  text-align: center;
  border: 1px solid #b6bbae;
  border-radius: 6px;
  padding: 12px 6px;
  font-size: 20px;
  font-family: var(--serif);
}
.checkout-amounts small {
  font-family: var(--mono);
  font-size: 9px;
  margin-left: 2px;
}
.checkout-amounts input:checked + span,
.network-options input:checked + span {
  border-color: var(--copper);
  background: #efe0d2;
  box-shadow: inset 0 0 0 1px var(--copper);
}
.checkout-amounts input:focus-visible + span,
.network-options input:focus-visible + span {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}
.network-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.network-options label > span {
  display: block;
  border: 1px solid #b6bbae;
  border-radius: 6px;
  padding: 12px 15px;
}
.network-options strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
}
.network-options small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.checkout-summary {
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
  font-size: 12px;
}
.checkout-summary strong {
  font-weight: 600;
}
.checkout-summary .checkout-total {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  margin-top: 13px;
}
.checkout-summary p {
  font-size: 10px;
  color: var(--muted);
}
.checkout-notice {
  background: #e9ece2;
  border-left: 2px solid #82946e;
  padding: 12px 14px;
  margin: 19px 0 15px;
  font-size: 11px;
  line-height: 1.8;
}
.checkout-submit {
  width: 100%;
}
.checkout-footer {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.85;
}
.checkout-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  min-height: 30px;
}
.form-error {
  color: #9c2922;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--ink);
  color: white;
  border-radius: 7px;
  font-size: 12px;
  max-width: calc(100% - 32px);
  box-shadow: 0 5px 25px #0002;
  text-align: center;
}
.toast:not(:empty) {
  padding: 12px 20px;
}
.noscript-note {
  margin: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}
/* Pages de documentation et de confidentialité. */
.subpage-header {
  padding-block: 60px 55px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.breadcrumb a:hover {
  color: var(--copper);
}
.subpage-header h1 {
  font-size: clamp(43px, 5.5vw, 72px);
}
.subpage-header .section-intro {
  max-width: 630px;
  margin-top: 23px;
}
.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 65px;
  padding-block: 60px 100px;
}
.docs-nav {
  align-self: start;
  position: sticky;
  top: 115px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.docs-nav a {
  font-size: 12px;
  padding: 11px 14px;
  border-left: 1px solid var(--line);
  min-height: 44px;
}
.docs-nav a:hover {
  border-color: var(--copper);
  background: var(--peach);
}
.docs-content {
  min-width: 0;
}
.docs-content section + section {
  margin-top: 55px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.docs-content h2 {
  font-size: 34px;
  margin-bottom: 22px;
}
.docs-content h3 {
  font-size: 17px;
  margin: 25px 0 12px;
}
.docs-content p,
.docs-content li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.docs-content p + p {
  margin-top: 15px;
}
.docs-content ul,
.docs-content ol {
  padding-left: 23px;
}
.docs-content li {
  padding: 5px 0;
}
.docs-content :not(pre) > code {
  font-size: 12px;
  color: var(--copper);
  overflow-wrap: anywhere;
}
.docs-content a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--copper);
}
.docs-content .api-sample {
  margin-block: 24px;
}
.docs-content .api-sample pre {
  min-height: 0;
}
.docs-content .callout {
  background: #e9ece2;
  border-left: 2px solid #82946e;
  padding: 18px 23px;
  margin: 23px 0;
  font-size: 13px;
}
.table-scroll {
  overflow: auto;
  margin-block: 22px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  text-align: left;
  line-height: 1.7;
}
th,
td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 600;
  background: #eceee4;
}
td {
  color: var(--muted);
}
@media (min-width: 1450px) {
  .hero {
    padding-block: 95px;
  }
  .hero-stage {
    height: 560px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .navigation {
    gap: 20px;
  }
  .nav-wrap {
    gap: 22px;
  }
  .hero {
    gap: 20px;
  }
  .hero-stage {
    height: 510px;
  }
  .conversation-preview {
    width: calc(100% - 25px);
  }
  .conversation-body {
    padding: 25px;
  }
  .stage-ticket {
    right: -5px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .playground-layout {
    gap: 50px;
  }
  .api-layout {
    gap: 50px;
  }
  .privacy-layout {
    gap: 55px;
  }
  .section {
    padding-block: 90px;
  }
  .compatibility-items {
    padding-left: 30px;
    gap: 20px;
  }
  .compatibility-items span {
    font-size: 14px;
  }
  .credit-card {
    padding-inline: 23px;
  }
}
@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
  .nav-docs {
    display: flex !important;
  }
  .navigation {
    justify-content: flex-end;
    gap: 22px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-stage {
    height: 490px;
  }
  .example-question {
    font-size: 22px;
  }
  .conversation-body {
    font-size: 11px;
    padding: 22px;
  }
  .window-bar {
    padding-inline: 15px;
    font-size: 8px;
  }
  .window-footer {
    font-size: 7px;
    padding-inline: 15px;
  }
  .stage-ticket {
    padding: 12px 15px;
    bottom: 32px;
  }
  .stage-ticket strong {
    font-size: 17px;
  }
  .stage-ticket div > span {
    font-size: 8px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    padding-inline: 17px;
    font-size: 12px;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .use-cases {
    gap: 24px;
  }
  .use-case .micro {
    font-size: 8px;
  }
  .use-case h3 {
    font-size: 20px;
  }
  .use-case p {
    font-size: 13px;
  }
  .compatibility-inner {
    gap: 25px;
  }
  .compatibility-items {
    gap: 15px;
  }
  .compatibility-items span {
    font-size: 12px;
  }
  .compatibility-items span:nth-child(2) {
    font-size: 20px;
  }
  .playground-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }
  .playground-copy h2 {
    font-size: 40px;
  }
  .example-selectors {
    padding-inline: 18px;
    gap: 5px;
  }
  .example-selectors button {
    padding-inline: 8px;
    font-size: 9px;
  }
  .demo-form {
    padding-inline: 18px;
  }
  .demo-form-bottom > span {
    max-width: 145px;
  }
  .demo-answer {
    margin-inline: 18px;
    font-size: 13px;
  }
  .demo-status {
    padding-inline: 18px;
  }
  .api-layout {
    gap: 32px;
  }
  .api-layout h2 {
    font-size: 40px;
  }
  .api-sample pre {
    font-size: 10px;
    padding-inline: 20px;
  }
  .code-file {
    font-size: 8px;
    padding-inline: 20px;
  }
  .code-note {
    padding-inline: 20px;
  }
  .credit-card {
    padding-inline: 18px;
  }
  .credit-card .button {
    font-size: 11px;
    padding-inline: 13px;
    gap: 10px;
  }
  .credit-price {
    font-size: 49px;
  }
  .credit-card ul {
    font-size: 11px;
  }
  .credit-card h3 {
    font-size: 20px;
  }
  .credit-recommendation {
    font-size: 7px;
  }
  .estimator {
    gap: 35px;
  }
  .privacy-layout {
    gap: 35px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .privacy-art {
    padding: 20px;
    aspect-ratio: 0.65;
  }
  .privacy-frame {
    padding-inline: 8px;
  }
  .privacy-art-caption {
    font-size: 20px;
  }
  .corner-one {
    top: 14px;
    left: 14px;
  }
  .corner-two {
    bottom: 14px;
    right: 14px;
  }
  .privacy-layout h2 {
    font-size: 39px;
  }
  .faq-section {
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .closing-asterisk {
    right: 3%;
    font-size: 390px;
    top: -25px;
  }
  .docs-layout {
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 30px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement {
    font-size: 9px;
    gap: 7px;
    min-height: 34px;
    padding-inline: 10px;
  }
  .announcement-divider {
    margin-inline: 1px;
  }
  .announcement .status-dot {
    width: 5px;
    height: 5px;
  }
  .nav-wrap {
    min-height: 72px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    font-size: 28px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .brand-suffix {
    font-size: 8px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
  }
  .navigation {
    width: 100%;
    flex: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 22px;
    padding: 5px 0 18px;
  }
  .navigation a {
    font-size: 13px;
  }
  .js-ready .navigation:not(.is-open) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 46px;
    padding-bottom: 48px;
  }
  .hero h1 {
    font-size: clamp(63px, 11.8vw, 84px);
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 460px;
    margin-top: 24px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 13px 19px;
  }
  .hero-footnote {
    font-size: 10px;
    gap: 7px;
  }
  .hero-stage {
    height: 485px;
    width: min(470px, 100%);
    margin-inline: auto;
  }
  .conversation-preview {
    width: calc(100% - 32px);
  }
  .conversation-body {
    padding: 25px;
    font-size: 12px;
  }
  .example-question {
    font-size: 25px;
  }
  .window-bar {
    font-size: 9px;
  }
  .window-footer {
    font-size: 8px;
  }
  .stage-note {
    left: 25px;
    top: 5px;
    font-size: 8px;
  }
  .stage-ticket {
    right: 0;
    bottom: 12px;
    padding: 13px 17px;
  }
  .stage-ticket strong {
    font-size: 19px;
  }
  .stage-index {
    left: 17px;
    font-size: 7px;
    bottom: 0;
  }
  .stage-grid {
    inset: 15px 0 0;
  }
  .orbit-two {
    inset-inline: 0;
  }
  .compatibility-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-block: 25px;
  }
  .compatibility-inner > p br {
    display: none;
  }
  .compatibility-inner > p strong {
    margin-left: 4px;
  }
  .compatibility-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    padding-left: 0;
    gap: 17px 28px;
    width: 100%;
  }
  .compatibility-items span {
    font-size: 14px;
  }
  .compatibility-items span:nth-child(2) {
    font-size: 22px;
    line-height: 1;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-intro {
    max-width: 100%;
    font-size: 14px;
    margin-top: 23px;
  }
  h2 {
    font-size: 43px;
  }
  .eyebrow {
    margin-bottom: 17px;
  }
  .use-cases {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .use-case {
    padding-top: 20px;
  }
  .use-case-top {
    margin-bottom: 20px;
  }
  .use-case .micro {
    font-size: 9px;
  }
  .use-case h3 {
    font-size: 23px;
  }
  .use-case p {
    font-size: 14px;
    margin-bottom: 11px;
  }
  .use-case .text-link {
    font-size: 12px;
  }
  .playground-section {
    padding-block: 60px;
  }
  .playground-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .playground-copy h2 {
    font-size: 44px;
  }
  .playground-copy h2 br:nth-child(2) {
    display: none;
  }
  .playground-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .preview-note {
    max-width: 100%;
    margin: 24px 0 12px;
  }
  .preview-note p {
    font-size: 12px;
  }
  .playground-top {
    padding: 16px 18px;
  }
  .example-selectors {
    padding-top: 15px;
  }
  .example-selectors button {
    font-size: 10px;
  }
  .demo-answer {
    min-height: 180px;
    padding: 17px;
    font-size: 14px;
  }
  .demo-status {
    font-size: 8px;
  }
  .demo-form-bottom > span {
    font-size: 8px;
    max-width: 145px;
  }
  .demo-form textarea {
    font-size: 16px;
  }
  .api-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .api-layout h2 {
    font-size: 43px;
  }
  .api-layout .section-intro {
    max-width: 100%;
  }
  .feature-list li {
    padding-block: 10px;
  }
  .api-sample pre {
    font-size: 11px;
    min-height: 0;
  }
  .api-sample .code-file {
    font-size: 8px;
  }
  .credit-grid {
    grid-template-columns: 1fr;
    gap: 43px;
    padding-top: 0;
  }
  .credit-card {
    padding: 27px;
  }
  .credit-card h3 {
    font-size: 24px;
  }
  .credit-price {
    font-size: 57px;
    margin-top: 13px;
  }
  .credit-card > p {
    max-width: 100%;
    min-height: 0;
    font-size: 13px;
  }
  .credit-card .micro {
    font-size: 10px;
  }
  .credit-card ul {
    margin-block: 18px 15px;
    padding-block: 15px;
    font-size: 13px;
  }
  .credit-card .button {
    font-size: 13px;
    padding: 13px 20px;
  }
  .credit-recommendation {
    font-size: 8px;
  }
  .pricing-disclaimer {
    text-align: left;
    font-size: 11px;
  }
  .pricing-status {
    font-size: 9px;
    margin-top: 18px;
    margin-bottom: 5px;
  }
  .estimator {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    padding-top: 32px;
  }
  .estimator-description > p:not(.eyebrow) {
    font-size: 13px;
  }
  .estimate-fields label {
    font-size: 13px;
  }
  .estimate-fields input {
    font-size: 19px;
  }
  .payment-strip {
    flex-wrap: wrap;
    padding: 19px;
    gap: 12px;
    margin-top: 30px;
  }
  .payment-strip > div {
    flex-basis: calc(100% - 48px);
  }
  .payment-strip div > span {
    font-size: 10px;
  }
  .payment-strip .text-link {
    margin-left: 46px;
    font-size: 12px;
  }
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .privacy-art {
    aspect-ratio: 1.3;
    max-height: 330px;
    width: 100%;
    order: 2;
    padding: 23px;
  }
  .privacy-frame {
    padding: 16px;
    position: relative;
    align-items: flex-start;
  }
  .privacy-frame > .micro {
    text-align: left;
    font-size: 8px;
  }
  .abstract-lock {
    position: absolute;
    right: 19px;
    top: 42px;
    transform: scale(0.75);
    transform-origin: top right;
    margin: 0;
  }
  .privacy-art-caption {
    text-align: left;
    font-size: 23px;
    max-width: 50%;
    line-height: 1.35;
    z-index: 1;
  }
  .privacy-layout h2 {
    font-size: 43px;
  }
  .privacy-points p {
    font-size: 13px;
  }
  .privacy-points h3 {
    font-size: 15px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 20px;
  }
  .closing-cta {
    padding-block: 60px;
  }
  .closing-cta h2 {
    font-size: 53px;
  }
  .closing-asterisk {
    font-size: 280px;
    right: -60px;
    top: 20px;
    opacity: 0.4;
  }
  .closing-cta .eyebrow {
    font-size: 9px;
  }
  .closing-cta .hero-actions {
    gap: 12px 22px;
  }
  .closing-cta .text-link {
    font-size: 11px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px 22px;
    padding-bottom: 25px;
  }
  .footer-top > p {
    order: 3;
    flex-basis: 100%;
    font-size: 12px;
  }
  .footer-top > .text-link {
    margin-left: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom nav {
    gap: 22px;
    font-size: 10px;
  }
  .site-footer {
    padding-top: 30px;
  }
  .subpage-header {
    padding-block: 30px 40px;
  }
  .subpage-header h1 {
    font-size: 47px;
  }
  .docs-layout {
    grid-template-columns: 1fr;
    padding-block: 30px 65px;
    gap: 35px;
  }
  .docs-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .docs-nav a {
    padding: 9px 12px;
    font-size: 11px;
    border: 1px solid var(--line);
    border-radius: 5px;
  }
  .docs-content h2 {
    font-size: 32px;
  }
  .docs-content p,
  .docs-content li {
    font-size: 13px;
  }
  .docs-content .callout {
    padding: 15px 18px;
  }
  .docs-content th,
  .docs-content td {
    padding: 11px 10px;
    font-size: 11px;
  }
  .docs-content section + section {
    margin-top: 35px;
    padding-top: 30px;
  }
  dialog {
    padding: 18px 21px;
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }
  dialog h2 {
    font-size: 33px;
  }
  .checkout-header .eyebrow {
    font-size: 8px;
  }
  .checkout-description {
    font-size: 12px;
  }
  .checkout-amounts {
    gap: 8px;
  }
  .checkout-amounts label > span {
    font-size: 22px;
  }
  .checkout-amounts small {
    font-size: 8px;
  }
  .checkout-footer {
    font-size: 10px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .announcement {
    font-size: 8px;
    gap: 5px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-stage {
    height: 470px;
  }
  .conversation-body {
    padding: 22px 20px;
  }
  .example-question {
    font-size: 23px;
  }
  .stage-ticket {
    bottom: 7px;
  }
  .stage-index {
    font-size: 6px;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    padding-inline: 15px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .example-selectors {
    gap: 5px;
    padding-inline: 12px;
  }
  .example-selectors button {
    font-size: 9px;
    padding-inline: 7px;
  }
  .demo-form-bottom {
    flex-wrap: wrap;
  }
  .demo-form-bottom > span {
    flex: 1;
  }
  .demo-form-bottom .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .estimate-result output {
    font-size: 34px;
  }
  .privacy-art-caption {
    font-size: 20px;
  }
  .footer-bottom nav {
    gap: 14px;
  }
  .closing-cta h2 {
    font-size: 48px;
  }
}
.model-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.code-environment {
  padding: 18px 24px;
  border-bottom: 1px solid #ffffff30;
}
.code-environment label,
.estimate-mode label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.code-environment select,
.estimate-mode select {
  font: inherit;
  font-size: 14px;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px;
}
.estimate-mode {
  margin-bottom: 22px;
}
.estimate-mode .text-link {
  margin-top: 8px;
}
.estimator-form fieldset {
  border: 0;
  padding: 0;
  margin-inline: 0;
  min-width: 0;
}
.request-fields {
  grid-template-columns: 1fr;
}
.request-fields input {
  width: 100%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.model-summary,
.model-details {
  padding: 32px;
  min-width: 0;
}
.model-summary {
  background: var(--peach);
}
.model-summary h3 {
  margin: 24px 0 14px;
  font-size: 25px;
}
.model-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.model-card code {
  overflow-wrap: anywhere;
}
.model-card dl {
  margin: 20px 0;
}
.model-card dl > div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.model-card dt {
  color: var(--muted);
  font-size: 12px;
}
.model-card dd {
  margin: 5px 0 0;
  font-size: 15px;
}
.model-details .text-link {
  margin-right: 20px;
}
@media (max-width: 700px) {
  .model-card {
    grid-template-columns: 1fr;
  }
  .model-summary,
  .model-details {
    padding: 22px;
  }
  .hero h1 {
    font-size: clamp(48px, 10vw, 70px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover:not(:disabled) {
    transform: none;
  }
}
