:root {
  --paper: #f8f9f6;
  --white: #fff;
  --ink: #20241f;
  --muted: #7b8077;
  --line: #dfe3d9;
  --lime: #d8fc50;
  --mono: "IBM Plex Mono", monospace;
  --display: "Space Grotesk", sans-serif;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
pre:focus-visible {
  outline: 3px solid #8baa19;
  outline-offset: 4px;
}
button,
a.btn {
  transition:
    background 0.18s,
    transform 0.18s,
    color 0.18s;
}
.btn:hover {
  transform: translateY(-2px);
}
header {
  height: 91px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 25px;
  background: #f8f9f6f2;
  position: relative;
  z-index: 20;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 51px;
  line-height: 1;
  letter-spacing: -10px;
  padding-right: 15px;
  position: relative;
  display: inline-flex;
}
.brand span {
  color: #6d7663;
}
.brand i {
  font: 12px var(--mono);
  letter-spacing: 0;
  position: absolute;
  right: 0;
  top: 6px;
}
nav {
  display: flex;
  gap: 33px;
  font-size: 14px;
  align-items: center;
}
nav button {
  font-size: 14px;
  padding: 0;
}
nav span {
  margin-left: 5px;
  color: #889079;
}
nav a:hover,
nav button:hover,
.text-link:hover {
  color: #668400;
}
.header-cta {
  border: 1px solid #bdc5b2;
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 650;
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-cta:hover {
  background: var(--lime);
}
.mobile-menu {
  display: none;
}
main {
  max-width: 1600px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6%;
  padding: 66px 5% 67px;
}
.eyebrow {
  font: 10px var(--mono);
  letter-spacing: 1.3px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #737d69;
  line-height: 1.6;
}
.badge {
  border: 1px solid #c7cebd;
  background: #f0f3e9;
  padding: 5px 7px;
  border-radius: 3px;
  color: #4f5b40;
  letter-spacing: 0.7px;
  white-space: nowrap;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 90px);
  line-height: 1.01;
  letter-spacing: -5.5px;
  font-weight: 500;
  margin: 27px 0 23px;
}
h1 > span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
h1 > span:before {
  content: "";
  position: absolute;
  inset: 53% -9px 0 -5px;
  background: var(--lime);
  z-index: -1;
  transform: rotate(-2deg);
}
.hero-copy > p {
  font-size: 16px;
  line-height: 1.8;
  color: #757d6e;
  max-width: 395px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 28px 0 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 6px;
  padding: 17px 21px;
  font-size: 14px;
  font-weight: 650;
  min-height: 52px;
}
.primary {
  background: var(--lime);
  color: #242d17;
}
.primary:hover {
  background: #c7ef37;
}
.dark {
  background: #22291f;
  color: #f6f9ed;
}
.dark:hover {
  background: #3b482d;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}
.hero-foot {
  font: 11px var(--mono);
  color: #848c79;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tiny-cross {
  font-size: 22px;
  color: #839969;
}
.hero-console {
  position: relative;
  border: 1px solid #414a38;
  border-radius: 12px;
  background: #232a21;
  color: #e8eee1;
  box-shadow: 0 24px 50px #29391c17;
  transform: rotate(-1deg);
  transition: transform 0.3s;
  min-width: 0;
}
.hero-console:hover {
  transform: rotate(0);
}
.console-top {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #3c4434;
  font: 12px var(--mono);
  color: #b0b8a5;
}
.terminal-mark {
  color: var(--lime);
  font-size: 17px;
}
.console-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: #afbc95;
  border: 1px solid #525e44;
  border-radius: 4px;
  padding: 4px 6px;
  margin-left: auto;
}
.code-tabs {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid #353f2d;
}
.code-tabs button {
  font: 11px var(--mono);
  padding: 15px 0;
  color: #a7b39a;
  position: relative;
}
.code-tabs button[aria-selected="true"] {
  color: var(--lime);
}
.code-tabs button[aria-selected="true"]:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  left: 0;
  right: 0;
}
.code-tabs .copy {
  margin-left: auto;
  color: #a7b39a;
  font-size: 10px;
}
.hero-code {
  font: 12px/2 var(--mono);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  padding: 27px 23px 23px;
  min-height: 176px;
  color: #e9eee2;
}
.syntax-green {
  color: #d8fc50;
}
.syntax-muted {
  color: #819474;
}
.syntax-yellow {
  color: #dfca98;
}
.console-response {
  margin: 0 22px 23px;
  background: #2e3728;
  border: 1px solid #414c37;
  border-radius: 6px;
  padding: 15px;
}
.response-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font: 10px var(--mono);
  color: #9fad90;
  margin-bottom: 17px;
}
.response-head > span:first-child {
  color: #d8fc50;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3be6d;
  margin-right: 7px;
}
.response-head .status-dot {
  background: var(--lime);
  box-shadow: 0 0 8px #d8fc5060;
}
.response-row {
  font: 11px var(--mono);
  display: flex;
  justify-content: space-between;
  margin: 11px 0;
  color: #a5b297;
  gap: 10px;
}
.response-row b {
  font-weight: 400;
  color: #e0e9d5;
  text-align: right;
}
.console-bottom {
  border-top: 1px solid #3d4634;
  padding: 17px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.console-bottom > span {
  font: 10px var(--mono);
  color: #889c76;
}
.console-bottom button {
  font: 11px var(--mono);
  color: #e2f1cb;
  background: #3a482f;
  border: 1px solid #536444;
  border-radius: 4px;
  padding: 10px 12px;
  white-space: nowrap;
}
.console-bottom button:hover {
  background: #52693b;
}
.console-bottom button span {
  margin-left: 12px;
}
.console-orbit {
  position: absolute;
  bottom: -27px;
  right: 6px;
  color: #85916f;
  font: 9px var(--mono);
  letter-spacing: 1px;
}
.capability-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 5%;
  padding: 24px 0;
  font-size: 13px;
}
.capability-strip > span:first-child {
  font: 9px var(--mono);
  letter-spacing: 1px;
  color: #87927b;
  max-width: 125px;
  line-height: 1.6;
}
.capability-strip b {
  font: 10px var(--mono);
  color: #8f9d7e;
  margin-right: 12px;
}
.strip-end {
  font-size: 22px;
  color: #7a896a;
}
.section {
  padding: 78px 5% 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 33px;
  gap: 25px;
}
.section-head h2 {
  font: 500 45px/1.13 var(--display);
  letter-spacing: -2.1px;
  margin-top: 17px;
}
.section-head h2 span {
  color: #859078;
}
.section-head p {
  font-size: 14px;
  line-height: 1.8;
  color: #7e8774;
  max-width: 365px;
  margin-bottom: 5px;
}
.section-head .text-link {
  margin-top: 12px;
  font-size: 12px;
}
.api-workbench {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: white;
}
.request-pane {
  padding: 25px 27px;
  border-right: 1px solid var(--line);
}
.pane-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: 10px var(--mono);
  letter-spacing: 0.8px;
  color: #859075;
  height: 19px;
}
.sandbox-label {
  font-size: 8px;
  border: 1px solid #d5ddc9;
  border-radius: 3px;
  padding: 4px 6px;
  background: #f7f9f1;
}
.endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0 24px;
  background: #f5f7f0;
  border: 1px solid #e1e6d8;
  border-radius: 5px;
  padding: 13px;
}
.endpoint b {
  font: 10px var(--mono);
  color: #627d2c;
  background: #e9f0da;
  padding: 4px 6px;
  border-radius: 3px;
}
.endpoint code {
  font: 13px var(--mono);
}
.endpoint button {
  margin-left: auto;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #727e64;
}
select,
input:not([type="checkbox"]):not([type="range"]),
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfe4d7;
  border-radius: 5px;
  background: white;
  padding: 12px;
  color: #35412a;
  font-size: 13px;
}
select {
  appearance: auto;
}
#requestForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.radius-label {
  position: relative;
}
.radius-label output {
  position: absolute;
  right: 0;
  top: 0;
  color: #354725;
  font: 11px var(--mono);
}
input[type="range"] {
  accent-color: #64783d;
  cursor: pointer;
  width: 100%;
  height: 8px;
  margin: 9px 0 0;
}
label.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #536a2a;
  margin: 0;
}
form .btn {
  width: 100%;
}
.sandbox-note {
  font-size: 10px;
  color: #8c967f;
  margin-top: 13px;
  line-height: 1.7;
}
.response-pane {
  background: #fafbf8;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.response-pane > .pane-label {
  height: 69px;
  padding: 25px 27px;
}
.response-status {
  background: #eaf3d9;
  color: #6a843a;
  font-size: 9px;
  letter-spacing: 0;
  border-radius: 3px;
  padding: 5px 7px;
}
.response-toolbar {
  height: 48px;
  background: #f0f3eb;
  border-block: 1px solid #e0e6d7;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.response-toolbar > div {
  height: 100%;
  display: flex;
  gap: 24px;
}
.response-toolbar button {
  font: 11px var(--mono);
  color: #8a957d;
  padding: 0;
  position: relative;
}
.response-toolbar button[aria-selected="true"] {
  color: #354824;
}
.response-toolbar button[aria-selected="true"]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #798e51;
  height: 2px;
}
.response-toolbar span {
  font-size: 9px;
  background: #e1e8d6;
  padding: 1px 5px;
  margin-left: 4px;
  border-radius: 3px;
}
#jsonOutput {
  padding: 24px 27px;
  margin: 0;
  overflow: auto;
  height: 394px;
  font: 12px/1.9 var(--mono);
  color: #65735b;
  tab-size: 2;
}
.json-key {
  color: #546b35;
}
.json-string {
  color: #7f8e5d;
}
.json-number {
  color: #a17945;
}
.response-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  font: 10px var(--mono);
  color: #919b85;
  padding: 17px 25px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
#resultOutput {
  height: 394px;
  padding: 15px 24px;
  overflow: auto;
}
.result-row {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.result-row h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.result-row p {
  font-size: 12px;
  color: #86917b;
}
.result-row button {
  font-size: 12px;
  color: #5f773e;
  border: 1px solid #cdd8bf;
  border-radius: 5px;
  padding: 8px 12px;
}
.network-shell {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.network-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 18px 23px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.network-top > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.network-top strong {
  font-weight: 500;
}
.network-tag {
  font: 8px var(--mono);
  color: #859273;
  border: 1px solid #d8e1cc;
  border-radius: 3px;
  padding: 4px 6px;
  margin-left: 12px;
}
.network-top > span {
  font: 10px var(--mono);
  color: #7e8c70;
}
.network-content {
  display: grid;
  grid-template-columns: 335px 1fr;
  height: 410px;
}
.network-list {
  overflow: auto;
  padding: 12px;
  scrollbar-width: thin;
}
.network-card {
  text-align: left;
  padding: 17px 14px;
  border: 1px solid transparent;
  border-bottom-color: #e6eade;
  border-radius: 7px;
  width: 100%;
  display: block;
}
.network-card:hover {
  background: #f6f9ef;
}
.network-card.selected {
  background: #f1f6e6;
  border-color: #ccd9b4;
}
.network-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.network-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.network-card .available {
  font: 9px var(--mono);
  color: #718b43;
  margin-top: 4px;
  white-space: nowrap;
}
.network-card p {
  font-size: 12px;
  color: #8b967e;
  margin-top: 5px;
}
.network-card .card-bottom {
  display: flex;
  justify-content: space-between;
  font: 10px var(--mono);
  margin-top: 18px;
  color: #7e8b6c;
}
.network-card .card-bottom b {
  font-weight: 400;
  color: #4d6532;
}
.map-wrap {
  position: relative;
  min-width: 0;
  background: #e8eddf;
}
.map-wrap #map {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.leaflet-tile-pane {
  filter: saturate(0.15) contrast(0.88);
}
.map-caption {
  position: absolute;
  z-index: 500;
  bottom: 26px;
  left: 18px;
  background: #ffffffec;
  border: 1px solid #dde4d2;
  padding: 9px 12px;
  font: 9px var(--mono);
  border-radius: 5px;
  color: #71805e;
}
.map-pin {
  background: #293620;
  color: var(--lime);
  padding: 8px 12px;
  border: 2px solid #fff;
  border-radius: 6px;
  font: 11px var(--mono);
  box-shadow: 0 3px 9px #27372033;
  white-space: nowrap;
  width: max-content;
}
.map-pin.active {
  background: var(--lime);
  color: #233213;
  border-color: #4d6130;
  transform: scale(1.1);
}
.map-pin.busy {
  background: #777f6c;
  color: white;
}
.leaflet-control-zoom {
  border: 1px solid #d9e0cf !important;
  box-shadow: none !important;
  margin: 18px !important;
}
.leaflet-control-zoom a {
  color: #4a5b38 !important;
}
.leaflet-control-attribution {
  font-size: 9px !important;
}
.map-error {
  position: absolute;
  z-index: 600;
  inset: 30% 10%;
  padding: 20px;
  background: white;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.empty {
  padding: 30px 15px;
  color: #859475;
  font-size: 14px;
  line-height: 1.8;
}
.provider {
  margin: 76px 5% 0;
  padding: 35px 32px;
  background: #242d20;
  color: #f7f9ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}
.provider-label {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a7b495;
  font: 9px var(--mono);
  letter-spacing: 1px;
  border-bottom: 1px solid #424e37;
  padding-bottom: 20px;
}
.provider-label span {
  font-size: 23px;
  color: var(--lime);
}
.provider h2 {
  font: 400 36px/1.2 var(--display);
  letter-spacing: -1.3px;
}
.provider p {
  font-size: 14px;
  line-height: 1.8;
  color: #a0ae8f;
  margin-top: 17px;
}
.provider .btn {
  align-self: center;
}
footer {
  margin: 0 5%;
  padding: 39px 0;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #87927a;
  font-size: 12px;
}
footer .brand {
  color: #38412f;
  font-size: 36px;
  letter-spacing: -7px;
}
footer .brand i {
  font-size: 9px;
  top: 2px;
}
footer > div {
  margin-left: auto;
  display: flex;
  gap: 23px;
  align-items: center;
}
footer button {
  padding: 0;
  font-size: 12px;
  color: #727f64;
}
dialog {
  border: 1px solid #cfd9c2;
  border-radius: 12px;
  padding: 27px;
  width: 650px;
  max-width: calc(100vw - 28px);
  max-height: 90vh;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px #11200030;
}
dialog::backdrop {
  background: #17221088;
  backdrop-filter: blur(7px);
}
.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 10px var(--mono);
  color: #8a957e;
  margin-bottom: 28px;
}
.modal-top button {
  width: 32px;
  height: 32px;
  background: #edf1e6;
  border-radius: 50%;
  font-size: 15px;
}
dialog h2 {
  font: 500 32px/1.15 var(--display);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
dialog p {
  font-size: 14px;
  line-height: 1.8;
  color: #7b8970;
  margin-bottom: 18px;
}
dialog h3 {
  font: 500 18px var(--display);
  margin: 22px 0 12px;
}
.notice {
  padding: 14px;
  background: #edf2e4;
  border: 1px solid #dce5cf;
  border-radius: 5px;
  font-size: 12px !important;
  color: #6c7d57 !important;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.full {
  grid-column: 1/-1;
}
.form-grid label {
  font-size: 13px;
}
.material-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.material-options label {
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  font-size: 13px;
  color: #727e64;
  margin-bottom: 12px;
}
.error {
  color: #ac4f2c !important;
  font-size: 12px !important;
}
.form-grid .btn {
  margin-top: 5px;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.details-grid div {
  padding: 15px;
  background: #eef2e7;
  border-radius: 6px;
  font-size: 14px;
}
.details-grid small {
  display: block;
  font: 10px var(--mono);
  color: #8a967b;
  margin-bottom: 8px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.modal-actions .btn {
  flex: 1;
}
.docs-code {
  padding: 18px;
  background: #263021;
  color: #d8edbc;
  border-radius: 6px;
  overflow: auto;
  font: 12px/1.8 var(--mono);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.docs-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #dce4d1;
  vertical-align: top;
  line-height: 1.6;
}
.docs-table td:first-child {
  font-family: var(--mono);
  color: #587038;
}
.endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.endpoint-list div {
  padding: 15px;
  background: #edf2e5;
  border-radius: 5px;
  font: 12px var(--mono);
}
.endpoint-list b {
  color: #7c923e;
  margin-right: 10px;
}
.endpoint-list small {
  display: block;
  font:
    12px "DM Sans",
    sans-serif;
  color: #80906e;
  margin-top: 8px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: #26341e;
  color: #e5f6c9;
  border: 1px solid #667c45;
  border-radius: 8px;
  box-shadow: 0 6px 30px #22301330;
  padding: 15px 23px;
  font-size: 13px;
  max-width: 90vw;
}
.pulse {
  animation: flash 0.45s ease;
}
@keyframes flash {
  50% {
    opacity: 0.3;
  }
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (min-width: 1500px) {
  .hero {
    gap: 9%;
  }
  .hero-code {
    font-size: 14px;
    min-height: 190px;
  }
  .console-response {
    padding: 20px;
  }
  .response-row {
    font-size: 13px;
  }
  .hero {
    padding-block: 80px;
  }
  .section {
    padding-top: 95px;
  }
}
@media (max-width: 1050px) {
  .hero {
    gap: 4%;
    padding-top: 48px;
  }
  .eyebrow {
    font-size: 9px;
    gap: 8px;
    flex-wrap: wrap;
  }
  h1 {
    font-size: 65px;
    letter-spacing: -4px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .btn {
    gap: 20px;
    padding: 15px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-code {
    font-size: 11px;
  }
  .console-bottom > span {
    max-width: 140px;
    line-height: 1.7;
  }
  .console-top {
    padding: 17px;
  }
  .api-workbench {
    grid-template-columns: 43% 57%;
  }
  .request-pane {
    padding: 23px 20px;
  }
  .network-content {
    grid-template-columns: 300px 1fr;
  }
  .capability-strip {
    font-size: 12px;
  }
  .capability-strip b {
    margin-right: 6px;
  }
  .provider h2 {
    font-size: 32px;
  }
}
@media (max-width: 760px) {
  header {
    height: 74px;
    padding: 0 6%;
    gap: 15px;
  }
  .brand {
    font-size: 44px;
  }
  nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 12px;
    padding: 10px 12px;
    gap: 10px;
  }
  .mobile-menu {
    display: block;
    font-size: 20px;
    padding: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 6% 49px;
    gap: 40px;
  }
  h1 {
    font-size: 70px;
    letter-spacing: -4px;
    margin-top: 23px;
  }
  .hero-copy > p {
    max-width: 440px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .hero-actions {
    margin-bottom: 25px;
    gap: 23px;
  }
  .hero-actions .btn {
    padding: 17px;
    font-size: 14px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-console {
    transform: none;
    max-width: 600px;
    width: 100%;
  }
  .hero-code {
    font-size: 12px;
    min-height: 160px;
  }
  .console-bottom > span {
    max-width: none;
    font-size: 9px;
  }
  .console-response {
    margin: 0 18px 20px;
  }
  .hero-foot {
    font-size: 10px;
  }
  .capability-strip {
    margin: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .capability-strip > span:first-child {
    max-width: 160px;
    font-size: 9px;
  }
  .strip-end {
    display: none;
  }
  .section {
    padding: 49px 6% 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
    margin-top: 13px;
  }
  .section-head p {
    font-size: 14px;
  }
  .api-workbench {
    grid-template-columns: 1fr;
  }
  .request-pane {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .request-pane .pane-label {
    font-size: 10px;
  }
  form label,
  label.checkbox {
    font-size: 14px;
  }
  select,
  input:not([type="checkbox"]):not([type="range"]),
  textarea {
    font-size: 14px;
  }
  .sandbox-note {
    font-size: 11px;
  }
  .response-pane > .pane-label {
    height: 60px;
    padding: 22px 24px;
  }
  #jsonOutput,
  #resultOutput {
    height: 350px;
    font-size: 11px;
    padding: 20px;
  }
  .response-toolbar {
    padding: 0 20px;
  }
  .network-content {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .map-wrap {
    height: 330px;
  }
  .network-list {
    max-height: 310px;
  }
  .network-top {
    padding: 17px 15px;
    align-items: flex-start;
  }
  .network-top > div {
    flex-wrap: wrap;
    gap: 5px;
  }
  .network-tag {
    margin-left: 0;
    display: none;
  }
  .network-top > span {
    font-size: 9px;
    padding-top: 3px;
  }
  .network-card h3 {
    font-size: 15px;
  }
  .network-card p {
    font-size: 13px;
  }
  .network-card .available,
  .network-card .card-bottom {
    font-size: 11px;
  }
  .provider {
    margin: 49px 6% 0;
    padding: 24px;
    gap: 24px;
  }
  .provider h2 {
    font-size: 29px;
  }
  .provider p {
    font-size: 14px;
  }
  .provider .btn {
    width: 100%;
  }
  footer {
    margin: 0 6%;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 17px;
  }
  footer > div {
    flex-basis: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
  }
  footer button {
    font-size: 11px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full {
    grid-column: auto;
  }
  dialog {
    padding: 22px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .details-grid div {
    font-size: 13px;
  }
  .docs-table td {
    font-size: 11px;
    padding: 10px 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-console {
    transform: none;
  }
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(48px, 15vw, 66px);
    letter-spacing: -3.5px;
  }
  .eyebrow {
    line-height: 1.8;
  }
  .hero-copy > p {
    max-width: 380px;
  }
}
/* Color availability belongs to a material, not to the machine as a whole. */
.provider-colors {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 17px;
  background: #f1f5ea;
}
.provider-colors h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.provider-colors > p,
.color-hint {
  font-size: 12px;
  margin-bottom: 14px;
}
.provider-colors fieldset + fieldset {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #d9e2cc;
}
.provider-colors legend {
  font-size: 13px;
  font-weight: 600;
}
.color-options,
.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-choice {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: white;
  border: 1px solid #d7dfce;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}
.color-choice:has(input:checked) {
  border-color: #778e4e;
  background: #e8f2d7;
}
.color-choice i,
.color-chip i {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #0003;
  border-radius: 50%;
  background: var(--swatch);
}
.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  border: 1px solid #d6dfcc;
  background: white;
  border-radius: 5px;
  padding: 6px 8px;
}
.color-inventory {
  margin-bottom: 22px;
}
.color-inventory > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.color-inventory strong {
  font: 12px var(--mono);
  min-width: 48px;
  color: #63794a;
}
.color-choice input {
  width: 14px;
  height: 14px;
}
.form-grid .color-choice {
  flex-direction: row;
  font-size: 12px;
}
.checkout-summary {
  padding: 20px;
  border: 1px solid #d7e1cc;
  border-radius: 8px;
  background: #eef3e6;
  margin: 22px 0;
}
.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  font-size: 14px;
  padding: 9px 0;
}
.checkout-summary > div > span:first-child {
  color: #7a896c;
}
.checkout-summary strong {
  text-align: right;
  font-weight: 600;
}
.checkout-summary p {
  margin: 5px 0 15px;
  font-size: 13px;
}
.checkout-summary .checkout-total {
  border-top: 1px solid #d1ddc2;
  margin-top: 13px;
  padding-top: 18px;
}
.checkout-total strong {
  font: 500 30px var(--display);
  letter-spacing: -1px;
}
.payment-method {
  margin: 23px 0;
}
.payment-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  border: 1px solid #93aa70;
  border-radius: 7px;
  padding: 17px;
  background: #f1f6e7;
}
.payment-card input {
  width: 17px !important;
  accent-color: #617c3b;
}
.payment-card strong {
  display: block;
  color: #384c25;
  font-size: 14px;
}
.payment-card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #859477;
}
.card-symbol {
  margin-left: auto;
  font-size: 29px;
}
.payment-outcome {
  margin: 20px 0;
}
.checkout-back {
  display: block;
  margin: 18px auto 0;
  font-size: 13px;
  color: #7b8d67;
}
.payment-success {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 30px;
  margin-bottom: 25px;
}
.checkout-summary code {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.topup-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.topup-options label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 10px;
  border: 1px solid #d5dfc9;
  border-radius: 7px;
  background: white;
  cursor: pointer;
}
.topup-options label:has(input:checked) {
  background: #e9f3d8;
  border-color: #829e57;
}
.topup-options input {
  width: 16px !important;
  accent-color: #637f3b;
}
.topup-options span {
  font: 500 22px var(--display);
  color: #394c29;
}
.demo-receipts > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 14px;
}
.demo-receipts strong {
  font-size: 13px;
  font-weight: 500;
}
.demo-receipts small {
  display: block;
  margin-top: 6px;
  font: 10px var(--mono);
  color: #849474;
}
@media (max-width: 760px) {
  .topup-options {
    gap: 8px;
  }
  .topup-options label {
    padding: 16px 6px;
    gap: 6px;
  }
  .topup-options span {
    font-size: 19px;
  }
}

/* Two partner journeys, sharing the original WW visual language. */
[hidden] {
  display: none !important;
}
.audience-switch {
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef1e8;
}
.audience-switch a {
  padding: 11px 17px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 13px;
}
.audience-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}
.header-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
}
.partner-preview {
  border: 1px solid #cad2be;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 55px #3542200c;
  overflow: hidden;
  scroll-margin-top: 30px;
}
.partner-preview .console-top {
  margin: 0;
  font-size: 10px;
  gap: 12px;
}
.widget-model {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: #edf2e5;
  border-bottom: 1px solid var(--line);
}
.model-glyph {
  font: 70px var(--display);
  color: #778960;
  transform: rotate(-12deg);
}
.widget-model h3 {
  font: 500 23px var(--display);
  margin: 8px 0;
}
.widget-model p {
  font: 10px var(--mono);
  color: #68745b;
}
.partner-form {
  padding: 27px;
  display: grid;
  gap: 19px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.preview-heading strong {
  font: 500 21px var(--display);
}
.preview-heading span {
  font-size: 10px;
  color: var(--muted);
}
.partner-form label {
  display: grid;
  gap: 9px;
  font-size: 12px;
}
.partner-form input,
.partner-form select {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
}
.partner-form > p {
  font-size: 13px;
  line-height: 1.7;
  color: #737d69;
}
.partner-form .sandbox-note {
  margin: 0;
  font-size: 11px;
}
.preview-result {
  padding: 17px;
  border: 1px solid #cad7b5;
  border-radius: 5px;
  background: #f2f7e9;
  font-size: 13px;
  line-height: 1.7;
}
.preview-result p {
  margin-top: 7px;
}
.preview-result a {
  display: inline-block;
  margin-top: 12px;
}
.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.partner-cards article {
  padding: 32px;
  background: #fff;
}
.partner-cards article + article {
  border-left: 1px solid var(--line);
}
.partner-cards h3 {
  font: 500 25px/1.2 var(--display);
  letter-spacing: -0.7px;
  margin: 25px 0 15px;
}
.partner-cards p {
  font-size: 14px;
  line-height: 1.85;
  color: #737d69;
}
.playground > .hero-console {
  max-width: 720px;
  margin: 0 auto 50px;
}
.playground > .hero-console .console-orbit {
  display: none;
}
@media (max-width: 1050px) {
  header {
    gap: 12px;
  }
  .header-links {
    gap: 15px;
  }
  .audience-switch a {
    padding: 10px;
  }
  .partner-cards article {
    padding: 24px;
  }
}
@media (max-width: 760px) {
  header {
    height: auto;
    min-height: 115px;
    flex-wrap: wrap;
    padding: 18px 5% 12px;
  }
  header .audience-switch {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .audience-switch a {
    flex: 1;
    text-align: center;
  }
  .header-links .header-cta {
    display: flex;
    padding: 9px 12px;
  }
  .partner-cards {
    grid-template-columns: 1fr;
  }
  .partner-cards article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .partner-preview {
    width: 100%;
    min-width: 0;
  }
  .partner-form,
  .widget-model {
    padding: 21px;
  }
  .widget-model {
    gap: 14px;
  }
  .widget-model h3 {
    font-size: 21px;
  }
  .partner-preview .console-label {
    font-size: 8px;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(47px, 10.6vw, 70px);
    letter-spacing: -3px;
  }
}
