@media (prefers-reduced-motion: no-preference) {
  .labs-hero h1,
  .experiment-header h1 {
    animation: arrival 450ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
}
.experiment-guide {
  border-top: 1px solid var(--line);
  padding: 24px 0 30px;
}
.experiment-guide h2 {
  font-size: 18px;
  margin: 0 0 18px;
}
.experiment-guide ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  list-style: none;
  counter-reset: guide;
  padding: 0;
  margin: 0;
}
.experiment-guide li {
  counter-increment: guide;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: #485461;
}
.experiment-guide li::before {
  content: counter(guide);
  color: #016ff7;
  font-weight: 700;
  font-size: 13px;
}
.catalogue-help {
  max-width: 660px;
  color: #596470;
  font-size: 15px;
  margin-bottom: 24px;
}
.filter-count {
  color: #596470;
  font-size: 13px;
  margin: 0 0 16px;
}
.result-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 0 30px;
}
.result-legend p {
  margin: 0;
  font-size: 13px;
  color: #596470;
}
.result-legend strong {
  display: block;
  margin-bottom: 5px;
  color: #111820;
}
.labs-page .demo-subtitle {
  font-size: 18px;
  margin: 28px 0 16px;
}
.connection-path small {
  display: block;
  color: #596470;
  font-size: 11px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .experiment-guide ol {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .result-legend {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.labs-page {
  --ink: #111820;
  --muted: #596470;
  --line: #e1e5e9;
  background: #fefefe;
  color: var(--ink);
  overflow-x: visible;
}
.labs-page main {
  min-height: 60vh;
}
.labs-page .site-header {
  position: relative;
}
.labs-page .container {
  max-width: 1180px;
}
.labs-page h1,
.labs-page h2,
.labs-page h3 {
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.labs-page p {
  line-height: 1.65;
}
.labs-page .kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
}
.labs-page button,
.labs-page input,
.labs-page select,
.labs-page textarea {
  font: inherit;
}
.labs-page button {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #016ff7;
  border-radius: 6px;
  background: #016ff7;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.18s,
    transform 0.18s;
}
.labs-page button:hover {
  background: #005dcc;
}
.labs-page button:active {
  transform: translateY(1px);
}
.labs-page button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.labs-page .quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.labs-page .quiet:hover {
  background: #f2f5f8;
}
.labs-page :focus-visible {
  outline: 3px solid #016ff7;
  outline-offset: 4px;
}
.labs-page [hidden] {
  display: none !important;
}
.labs-page label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.labs-page input:not([type="checkbox"]):not([type="range"]),
.labs-page select,
.labs-page textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 8px 0 16px;
  border: 1px solid #bdc5cd;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}
.labs-page textarea {
  resize: vertical;
}
.labs-page input[type="range"] {
  max-width: 100%;
  accent-color: #016ff7;
}
.labs-page input[type="checkbox"] {
  accent-color: #016ff7;
  width: 20px;
  height: 20px;
}
.labs-page a {
  text-underline-offset: 5px;
}
.labs-hero {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 50px;
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
}
.labs-hero h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  margin: 22px 0 24px;
  font-weight: 750;
}
.labs-hero h1 > span:first-child {
  font-weight: 400;
}
.hero-description {
  font-size: 19px;
  color: #4b5662;
  margin: 0;
}
.hero-aside {
  align-self: end;
  border-left: 1px solid var(--line);
  padding-left: 30px;
  font-size: 13px;
  color: var(--muted);
}
.index-mark {
  font:
    12px ui-monospace,
    monospace;
  color: #016ff7;
}
.lab-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.lab-link:hover {
  color: #016ff7;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.section-heading h2 {
  font-size: 24px;
  margin: 0;
}
.featured {
  padding: 54px 0 0;
}
.feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.preview {
  position: relative;
  min-height: 260px;
  background: #f2f4f6;
  overflow: hidden;
}
.motion-preview {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #eff3f8;
}
.feature-copy {
  padding: 42px;
}
.feature-copy h3 {
  font-size: 36px;
  margin: 20px 0;
}
.feature-copy p:not(.kicker) {
  font-size: 14px;
  color: var(--muted);
}
.tech {
  display: block;
  font:
    11px ui-monospace,
    monospace;
  color: var(--muted);
  margin: 26px 0 12px;
}
.motion-composition {
  position: relative;
  width: 75%;
  height: 210px;
  display: grid;
  place-items: center;
}
.motion-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 158px;
  height: 158px;
  padding: 24px;
  color: white;
  background: #016ff7;
  border-radius: 22px;
  font-size: 58px;
  font-weight: 650;
  box-shadow: 0 8px 14px #016ff70a;
}
.motion-tile span {
  font-size: 30px;
  font-weight: 400;
}
.motion-line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #c6d4e4;
}
.motion-caption {
  position: absolute;
  bottom: -8px;
  left: 0;
  font:
    10px ui-monospace,
    monospace;
  color: #596470;
}
.labs-page .preview-control {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 0;
  background: transparent;
  color: #33445a;
  font-size: 12px;
}
.featured-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.feature-small {
  min-width: 0;
}
.small-copy {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.small-copy h3 {
  font-size: 24px;
  margin: 10px 0;
}
.small-copy p:not(.kicker) {
  font-size: 14px;
  color: var(--muted);
}
.interface-preview {
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f4f4f1;
}
.preview-settings {
  width: 72%;
  max-width: 350px;
  background: white;
  border: 1px solid #e2e3df;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 8px #00000003;
}
.preview-settings strong {
  display: block;
  font-size: 18px;
  margin: 14px 0 25px;
}
.toggle-label {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.preview-settings p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.preview-settings.is-focused {
  border-color: #58a4ec;
}
.browser-preview {
  border-radius: 7px;
  background: #f1f5f8;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.browser-preview strong {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 300px;
  line-height: 1.2;
  margin: 20px 0;
}
.browser-preview p {
  font-size: 12px;
  color: var(--muted);
}
.browser-rule {
  height: 3px;
  background: #016ff7;
  width: 45px;
}
.catalogue {
  padding: 76px 0;
}
.filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.labs-page .filters button {
  border-color: transparent;
  font-size: 12px;
  min-height: 40px;
  padding: 9px 14px;
}
.labs-page .filters button[aria-pressed="true"] {
  color: #0059c9;
  background: #eef5ff;
  border-color: #c8ddf7;
}
.experiment-row {
  display: grid;
  grid-template-columns: 55px 1fr 90px;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.row-index {
  font:
    12px ui-monospace,
    monospace;
  color: #687480;
  align-self: start;
  padding-top: 5px;
}
.experiment-row h3 {
  font-size: 21px;
  margin: 0 0 9px;
}
.experiment-row h3 a {
  text-decoration: none;
  display: inline-block;
  min-height: 28px;
}
.experiment-row h3 a:hover {
  color: #016ff7;
}
.experiment-row h3 span {
  font-size: 16px;
  color: #016ff7;
}
.experiment-row p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: 650px;
}
.row-category {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}
.experiment-row[data-state="development"] {
  opacity: 0.75;
}
.experiment-row[data-state="development"] h3:after {
  content: "Em desenvolvimento";
  display: block;
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 8px;
}
.experiment-row[data-state="experimental"] h3:after {
  content: "Experimental";
  font-size: 11px;
  letter-spacing: 0;
  margin-left: 12px;
}
.labs-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 40px 60px;
  border-top: 1px solid var(--line);
}
.labs-cta h2 {
  font-size: 28px;
  margin: 12px 0;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.experiment-header {
  padding: 40px 0 45px;
  max-width: 780px;
}
.experiment-header h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  margin: 20px 0;
}
.experiment-header > p:last-child {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}
.demo {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 55px;
  min-width: 0;
}
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}
.toolbar label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.toolbar select {
  width: auto !important;
  margin: 0 !important;
}
.note {
  font-size: 12px;
  color: var(--muted);
}
.notice {
  border-left: 3px solid #58a4ec;
  padding: 10px 16px;
  background: #f5f8fb;
  font-size: 13px;
  color: #405063;
  margin: 0 0 26px;
}
.technical {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  border-top: 1px solid var(--line);
  padding: 30px 0 55px;
}
.technical h2 {
  font-size: 24px;
  max-width: 270px;
  margin: 0;
}
.technical p {
  margin-top: 0;
  color: var(--muted);
}
.labs-page details {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 26px;
  font-size: 14px;
}
.labs-page summary {
  cursor: pointer;
  min-height: 35px;
  font-weight: 600;
}
.labs-page pre {
  overflow: auto;
  background: #f3f5f7;
  border-radius: 4px;
  padding: 20px;
  font-size: 12px;
  line-height: 1.7;
}
.motion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.motion-sample {
  min-height: 200px;
  background: #f5f7f9;
  padding: 25px;
  border-radius: 6px;
}
.motion-sample > .kicker {
  display: block;
  margin-bottom: 30px;
}
.arrival {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
}
.arrival p {
  font-size: 12px;
  margin: 6px 0;
  color: var(--muted);
}
.mini-mark {
  padding: 16px 12px;
  background: #016ff7;
  color: white;
  border-radius: 8px;
}
.arrival.is-playing {
  animation: arrival var(--duration, 600ms) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes arrival {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hover-demo span {
  display: inline-block;
  transition: transform 0.2s;
}
.hover-demo:hover span {
  transform: translate(3px, -2px);
}
.segmented {
  display: flex;
  gap: 5px;
}
.labs-page .segmented button {
  font-size: 12px;
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.labs-page .segmented button[aria-pressed="true"] {
  background: #016ff7;
  color: white;
  border-color: #016ff7;
}
.motion-sample p {
  font-size: 12px;
  color: var(--muted);
}
.loader {
  width: 27px;
  height: 27px;
  border: 2px solid #cbd7e4;
  border-top-color: #016ff7;
  border-radius: 50%;
}
.loader.is-playing {
  animation: spin var(--duration, 600ms) linear 3;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.workspace {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.workspace h2 {
  font-size: 26px;
  margin-top: 15px;
}
.workspace-aside > label {
  margin-top: 30px;
}
.workspace p {
  color: var(--muted);
  font-size: 14px;
}
.table-wrap {
  overflow-x: auto;
}
.labs-page table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
}
.labs-page caption {
  text-align: left;
  font-size: 11px;
  color: var(--muted);
  padding-bottom: 18px;
}
.labs-page th,
.labs-page td {
  padding: 15px 8px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.labs-page th {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.labs-page td button {
  font-size: 11px;
  padding: 8px;
  white-space: nowrap;
}
.labs-page dialog {
  color: var(--ink);
  width: min(470px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}
.labs-page dialog::backdrop {
  background: #11182066;
}
.labs-page dialog h2 {
  font-size: 28px;
}
.error {
  color: #a62c34 !important;
  font-size: 13px;
}
.scene {
  background: #f1f4f8;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.scene canvas {
  width: 100%;
  height: 420px;
  display: block;
}
.scene-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  font:
    10px ui-monospace,
    monospace;
  color: #536476;
}
.connection-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  border-block: 1px solid var(--line);
}
.connection-path li {
  padding: 25px 12px;
  font-size: 13px;
  text-align: center;
}
.connection-path li:not(:last-child):after {
  content: " →";
  color: #016ff7;
  margin-left: 10px;
}
.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  align-items: center;
}
.inline-form label {
  grid-column: 1/-1;
}
.inline-form button {
  margin-bottom: 8px;
}
.event-log {
  height: 230px;
  overflow: auto;
  background: #101c2a;
  color: #d9e5f2;
  padding: 20px;
  border-radius: 6px;
  font:
    12px/1.8 ui-monospace,
    monospace;
  overflow-wrap: anywhere;
}
.event-log p {
  margin: 0 0 10px;
}
.facts {
  font-size: 13px;
}
.facts dt {
  color: var(--muted);
  margin-top: 20px;
}
.facts dd {
  margin: 4px 0 20px;
  font-weight: 600;
}
.passkey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  list-style: none;
}
.passkey-steps li {
  border-top: 2px solid var(--line);
  padding-top: 20px;
}
.passkey-steps li.is-current {
  border-color: #016ff7;
}
.passkey-steps li.is-current h2 {
  color: #0059c9;
}
.passkey-steps span {
  font:
    12px ui-monospace,
    monospace;
  color: #016ff7;
}
.passkey-steps h2 {
  font-size: 21px;
  letter-spacing: -0.025em;
}
.passkey-steps p {
  font-size: 13px;
  color: var(--muted);
}
.capability-summary {
  font-size: 23px;
  margin-bottom: 25px;
}
.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  margin: 0;
}
.capability {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.capability dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
}
.capability dd[data-state="available"] {
  color: #006749;
}
.capability dd[data-state="permission"] {
  color: #805500;
}
.precision-game {
  padding: 10px 20px;
}
.game-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.precision-game h2 {
  font-size: 34px;
  margin: 40px 0 15px;
}
.precision-game > p {
  color: var(--muted);
  font-size: 14px;
}
.precision-track {
  position: relative;
  height: 90px;
  margin: 40px 0;
  background: #f2f4f6;
  border-block: 1px solid #dce2e7;
  overflow: hidden;
}
.target-zone {
  position: absolute;
  left: 62%;
  width: 16%;
  height: 100%;
  background: #dcecff;
  border-inline: 2px solid #016ff7;
}
.cursor {
  position: absolute;
  left: 0;
  top: 15px;
  width: 3px;
  height: 60px;
  background: #101c2a;
}
.scores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 20px;
  font:
    12px ui-monospace,
    monospace;
}
.scores li {
  margin-right: 25px;
}
.api-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.api-grid section + section {
  border-left: 1px solid var(--line);
  padding-left: 45px;
}
.api-grid h2 {
  font-size: 28px;
  max-width: 330px;
  margin: 20px 0 30px;
}
.api-grid [role="status"] {
  padding: 20px;
  background: #f5f7f9;
  min-height: 105px;
  font-size: 14px;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.api-grid form > button {
  margin-top: 8px;
}
.api-grid form > p {
  font-size: 14px;
}
.labs-page .site-footer {
  background: #f8f9fa;
}
.labs-page .footer-brand > img {
  width: 145px;
  height: auto;
}
.labs-page .footer-brand p {
  font-size: 12px;
}
@media (max-width: 1024px) {
  .labs-hero {
    gap: 30px;
  }
  .feature-copy {
    padding: 30px;
  }
  .feature-copy h3 {
    font-size: 30px;
  }
  .main-nav {
    gap: 15px;
  }
  .workspace {
    gap: 25px;
  }
  .api-grid {
    gap: 30px;
  }
  .api-grid section + section {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .labs-page {
    --page-padding: 24px;
  }
  .labs-hero {
    grid-template-columns: 1fr;
    padding: 45px 0;
    gap: 25px;
  }
  .labs-hero h1 {
    margin-top: 16px;
  }
  .hero-aside {
    display: flex;
    align-items: center;
    gap: 25px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }
  .hero-aside .index-mark {
    display: none;
  }
  .hero-aside p {
    margin: 0;
    flex: 1;
  }
  .hero-description {
    font-size: 17px;
  }
  .feature {
    grid-template-columns: 1fr 1fr;
  }
  .motion-preview {
    min-height: 310px;
  }
  .feature-copy {
    padding: 25px;
  }
  .feature-copy h3 {
    font-size: 27px;
  }
  .section-heading > .kicker {
    display: none;
  }
  .featured-pair {
    gap: 24px;
  }
  .preview-settings {
    width: 86%;
    padding: 18px;
  }
  .browser-preview {
    padding: 25px;
  }
  .browser-preview strong {
    font-size: 23px;
  }
  .small-copy h3 {
    font-size: 21px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .workspace-aside {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .passkey-steps {
    grid-template-columns: 1fr 1fr;
  }
  .api-grid {
    grid-template-columns: 1fr;
  }
  .api-grid section + section {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .capabilities {
    column-gap: 25px;
  }
  .capability {
    font-size: 12px;
  }
  .demo {
    padding: 24px;
  }
  .technical {
    gap: 30px;
  }
  .scene canvas {
    height: 340px;
  }
}
@media (max-width: 540px) {
  .labs-page {
    --page-padding: 20px;
  }
  .labs-page .site-header .header-container {
    gap: 10px;
    padding-block: 16px;
  }
  .labs-page .site-header .brand img {
    width: 135px;
  }
  .labs-page .site-header .main-nav {
    justify-content: space-between;
    gap: 0;
  }
  .labs-page .site-header .main-nav a {
    font-size: 12px;
    padding-inline: 7px;
  }
  .labs-hero h1 {
    font-size: 42px;
    letter-spacing: -0.055em;
  }
  .hero-aside {
    display: block;
  }
  .hero-aside p {
    font-size: 12px;
  }
  .desktop-break {
    display: none;
  }
  .featured {
    padding-top: 35px;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .motion-preview {
    min-height: 255px;
  }
  .motion-composition {
    height: 165px;
  }
  .motion-tile {
    width: 126px;
    height: 126px;
    font-size: 45px;
    border-radius: 16px;
  }
  .feature-copy {
    padding: 26px;
  }
  .feature-copy h3 {
    font-size: 29px;
  }
  .feature-copy h3 br {
    display: none;
  }
  .feature-copy .tech {
    margin: 20px 0 4px;
  }
  .featured-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .preview {
    min-height: 235px;
  }
  .preview-settings {
    max-width: 300px;
  }
  .browser-preview strong {
    max-width: none;
  }
  .catalogue {
    padding: 48px 0;
  }
  .filters {
    gap: 3px;
  }
  .labs-page .filters button {
    padding: 8px 10px;
  }
  .experiment-row {
    grid-template-columns: 25px 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .row-category {
    display: none;
  }
  .experiment-row h3 {
    font-size: 19px;
  }
  .experiment-row p {
    font-size: 12px;
  }
  .labs-cta {
    display: block;
    padding-block: 25px 35px;
  }
  .labs-cta h2 {
    font-size: 25px;
  }
  .experiment-header {
    padding: 25px 0;
  }
  .experiment-header h1 {
    font-size: 36px;
  }
  .experiment-header > p:last-child {
    font-size: 16px;
  }
  .demo {
    padding: 18px;
    margin-bottom: 35px;
  }
  .motion-grid {
    grid-template-columns: 1fr;
  }
  .motion-sample {
    min-height: 180px;
    padding: 20px;
  }
  .toolbar {
    gap: 8px;
  }
  .labs-page button {
    font-size: 13px;
    padding: 10px 13px;
  }
  .technical {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 35px;
  }
  .technical h2 {
    font-size: 23px;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .capability {
    font-size: 13px;
  }
  .capability-summary {
    font-size: 21px;
  }
  .connection-path {
    grid-template-columns: 1fr 1fr;
  }
  .connection-path li {
    padding: 15px 8px;
    font-size: 12px;
  }
  .inline-form {
    grid-template-columns: 1fr;
  }
  .inline-form button {
    justify-self: start;
    margin-bottom: 20px;
  }
  .scene canvas {
    height: 260px;
  }
  .scene-label {
    font-size: 8px;
  }
  .passkey-steps {
    gap: 16px;
  }
  .passkey-steps h2 {
    font-size: 18px;
  }
  .passkey-steps p {
    font-size: 12px;
  }
  .precision-game {
    padding: 0;
  }
  .precision-game h2 {
    font-size: 28px;
  }
  .game-heading {
    display: block;
  }
  .game-heading > span {
    display: block;
    margin-bottom: 8px;
  }
  .labs-page td,
  .labs-page th {
    padding-inline: 3px;
    font-size: 11px;
  }
  .labs-page td button {
    font-size: 10px;
    padding: 6px;
  }
  .api-grid h2 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .labs-page *,
  .labs-page *:before,
  .labs-page *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
