@import url('/legal/assets/clarity.css');
* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:32px;
}

body {
  margin:0;
  background:var(--page);
  color:var(--ink);
  font:1rem/1.65 var(--font-ui);
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  text-decoration:none;
}

button {
  font:inherit;
  color:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

.icon-library {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.icon {
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}

.wrap {
  width:min(1160px,calc(100% - 64px));
  margin-inline:auto;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid var(--focus);
  outline-offset:5px;
}

.code-body:focus-visible,pre[tabindex]:focus-visible {
  outline:3px solid var(--focus);
  outline-offset:-3px;
}

.skip-link {
  position:fixed;
  z-index:20;
  top:12px;
  left:12px;
  padding:10px 20px;
  background:var(--action);
  color:var(--action-ink);
  border-radius:8px;
  transform:translateY(-150%);
}

.skip-link:focus {
  transform:translateY(0);
}

.site-header {
  height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.wordmark {
  display:inline-flex;
  align-items:baseline;
  gap:3px;
  font-size:30px;
  font-weight:800;
  letter-spacing:-1.8px;
  line-height:1;
}

.brand-dot {
  width:5px;
  height:5px;
  background:var(--accent);
  border-radius:50%;
}

.site-header nav {
  display:flex;
  gap:34px;
  font-size:14px;
  color:var(--ink-muted);
  margin-left:54px;
}

.site-header nav a:hover {
  color:var(--ink);
}

.header-actions {
  display:flex;
  align-items:center;
  gap:24px;
  flex-shrink:0;
  white-space:nowrap;
}

.header-sign-in {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  font-size:14px;
  font-weight:600;
  color:var(--ink-muted);
}

.header-sign-in:hover {
  color:var(--ink);
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:50px;
  padding:12px 22px;
  border:1px solid var(--line-strong);
  border-radius:11px;
  font-size:14px;
  font-weight:650;
  line-height:1.5;
  transition:background .18s,box-shadow .18s,transform .18s;
}

.button:hover {
  transform:translateY(-2px);
  border-color:var(--ink-faint);
}

.primary {
  background:linear-gradient(175deg,var(--action-top),var(--action));
  color:var(--action-ink);
  border-color:var(--action);
  box-shadow:0 4px 12px var(--shadow-color),inset 0 1px 0 var(--rim);
}

.primary:hover {
  box-shadow:0 5px 24px var(--shadow-color);
}

.secondary,.header-action {
  background:var(--surface);
  box-shadow:inset 0 1px 0 var(--rim);
}

.header-action {
  min-height:40px;
  font-size:14px;
  padding:8px 14px;
  gap:10px;
}

.header-action .icon {
  width:16px;
  height:16px;
}

.hero {
  position:relative;
  isolation:isolate;
  padding-top:50px;
}

.hero:before {
  content:"";
  position:absolute;
  z-index:-1;
  pointer-events:none;
  inset:27% -32px 30px;
  background:radial-gradient(ellipse at 22% 62%,var(--glow-cyan),transparent 57%),radial-gradient(ellipse at 80% 58%,var(--glow-violet),transparent 58%);
  filter:blur(16px);
}

.hero-intro {
  text-align:center;
  max-width:860px;
  margin:0 auto;
}

.beta-badge {
  display:inline-flex;
  flex-wrap:wrap;
  justify-content:center;
  max-width:100%;
  align-items:center;
  gap:9px;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:inset 0 1px 0 var(--rim);
  padding:7px 12px;
  font-size:12px;
  color:var(--ink-muted);
  border-radius:20px;
}

.status-dot {
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
}

.badge-divider {
  height:11px;
  width:1px;
  background:var(--line-strong);
  margin:0 2px;
}

h1 {
  margin:26px 0 22px;
  font-size:clamp(58px,7.2vw,94px);
  font-weight:800;
  letter-spacing:-.075em;
  line-height:1.04;
}

.gradient-text {
  color:var(--gradient-start);
  background:linear-gradient(105deg,var(--gradient-start) 15%,var(--gradient-end) 85%);
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-copy {
  font-size:18px;
  line-height:1.7;
  color:var(--ink-muted);
  max-width:530px;
  margin:0 auto;
}

.hero-actions {
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:29px;
}

.hero-note {
  margin:17px 0 0;
  color:var(--ink-faint);
  font-size:12px;
}

.showcase {
  max-width:840px;
  margin:48px auto 0;
  padding:7px;
  border:1px solid var(--line);
  border-radius:22px;
  background:color-mix(in srgb,var(--surface) 65%,transparent);
  box-shadow:0 24px 80px var(--shadow-color),inset 0 1px 0 var(--rim);
  scroll-margin-top:26px;
}

.showcase-top {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 19px 18px;
  color:var(--ink-muted);
  font-size:12px;
}

.showcase-top>span:first-child {
  display:flex;
  align-items:center;
  gap:9px;
}

.showcase-top .icon {
  width:15px;
  height:15px;
  color:var(--accent);
}

.example-label {
  font-size:12px;
  border:1px solid var(--line);
  padding:2px 7px;
  border-radius:5px;
}

.showcase-content {
  padding:27px 28px 0;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:15px;
  box-shadow:inset 0 1px 0 var(--rim);
}

.showcase-heading {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.place-title {
  display:flex;
  align-items:center;
  gap:12px;
}

.place-icon {
  display:grid;
  place-items:center;
  width:43px;
  height:43px;
  border-radius:12px;
  background:var(--surface-muted);
  border:1px solid var(--line);
  color:var(--accent);
}

.place-title h2 {
  margin:0;
  font-size:17px;
  letter-spacing:-.03em;
}

.place-title p {
  margin:2px 0 0;
  font-size:12px;
  color:var(--ink-faint);
}

.status-pill {
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:12px;
  color:var(--green-dark);
  background:var(--green-soft);
  padding:3px 7px;
  border:1px solid var(--green-line);
  border-radius:6px;
}

.status-pill .icon {
  width:12px;
  height:12px;
}

.example-url {
  display:flex;
  align-items:center;
  gap:11px;
  min-height:48px;
  border:1px solid var(--line);
  border-radius:9px;
  margin-top:23px;
  padding:8px 12px;
  background:var(--page);
  color:var(--ink-muted);
}

.example-url .icon {
  width:15px;
  height:15px;
}

.example-url code {
  font:12px/1.5 var(--font-ui);
  min-width:0;
  overflow-wrap:anywhere;
}

.example-url code span {
  color:var(--ink);
}

.url-label {
  margin-left:auto;
  font-size:12px;
  white-space:nowrap;
  color:var(--ink-faint);
}

.route-options {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:15px;
}

.route-option {
  display:flex;
  flex-direction:column;
  text-align:left;
  padding:17px 16px;
  border:1px solid var(--line);
  border-radius:11px;
  background:linear-gradient(155deg,var(--surface-muted),var(--surface));
  box-shadow:inset 0 1px 0 var(--rim);
  transition:background .18s,border-color .18s;
}

.route-option:hover {
  border-color:var(--line-strong);
}

.route-option[aria-pressed=true] {
  border-color:var(--blue-line);
  background:radial-gradient(ellipse at top left,var(--glow-cyan),transparent 95%),var(--surface-muted);
}

.route-icon {
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:19px;
  color:var(--accent);
}

.route-icon .diagonal {
  width:13px;
  height:13px;
  color:var(--ink-faint);
}

.route-option strong {
  font-size:14px;
  font-weight:700;
}

.route-option>span:not(.route-icon) {
  font-size:14px;
  color:var(--ink-muted);
  margin-top:3px;
}

.route-option small {
  font-size:12px;
  color:var(--ink-faint);
  margin-top:13px;
}

.route-explanation {
  display:flex;
  gap:8px;
  align-items:center;
  min-height:69px;
  color:var(--ink-muted);
}

.route-explanation p {
  font-size:16px;
  margin:12px 0;
  line-height:1.7;
}

.route-indicator {
  width:4px;
  height:4px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--accent);
}

.feature-strip {
  display:flex;
  justify-content:center;
  gap:36px;
  color:var(--ink-faint);
  font-size:12px;
  padding:34px 0 48px;
}

.feature-strip>span {
  display:flex;
  align-items:center;
  gap:9px;
}

.feature-strip .icon {
  width:15px;
  height:15px;
}

.site-footer {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:28px;
  padding-block:42px;
  border-top:1px solid var(--line);
}

.site-footer .wordmark {
  font-size:25px;
}

.site-footer>span {
  font-size:12px;
  color:var(--ink-faint);
}

.site-footer>a:last-child {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--ink-muted);
}

.site-footer .icon {
  width:15px;
  height:15px;
}

.section {
  padding-block:105px;
}

.section-heading {
  max-width:550px;
}

.eyebrow {
  margin:0 0 19px;
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
}

h2 {
  margin:0;
  font-size:clamp(32px,3.8vw,47px);
  line-height:1.15;
  letter-spacing:-.055em;
  font-weight:750;
}

.section-heading>p:last-child {
  margin:22px 0 0;
  font-size:16px;
  color:var(--ink-muted);
  max-width:500px;
}

.benefits {
  border-top:1px solid var(--line);
}

.benefit-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:48px;
  margin-top:55px;
}

.feature-icon {
  display:grid;
  place-items:center;
  width:41px;
  height:41px;
  background:linear-gradient(140deg,var(--surface-muted),var(--surface));
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--accent);
  box-shadow:inset 0 1px 0 var(--rim);
}

.benefit-grid h3 {
  margin:22px 0 12px;
  font-size:18px;
  letter-spacing:-.035em;
}

.benefit-grid p {
  margin:0;
  color:var(--ink-muted);
  font-size:16px;
  line-height:1.8;
}

.feature-caption {
  display:block;
  margin-top:25px;
  color:var(--ink-faint);
  font-size:12px;
}

.developers-section {
  padding-block:100px;
  background:linear-gradient(140deg,var(--surface),var(--page));
  border-block:1px solid var(--line);
}

.developer-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  align-items:center;
  gap:70px;
}

.developer-copy>p:not(.eyebrow) {
  max-width:425px;
  font-size:16px;
  color:var(--ink-muted);
  margin:22px 0 0;
  line-height:1.8;
}

.setup-steps {
  list-style:none;
  padding:0;
  margin:32px 0 0;
}

.setup-steps li {
  display:flex;
  gap:17px;
  margin-top:24px;
}

.setup-steps li>span {
  padding-top:3px;
  color:var(--ink-faint);
  font-size:12px;
  font-variant-numeric:tabular-nums;
}

.setup-steps h3 {
  font-size:14px;
  margin:0 0 4px;
  font-weight:650;
}

.setup-steps p {
  font-size:16px;
  margin:0;
  color:var(--ink-muted);
  max-width:335px;
  line-height:1.75;
}

.code-panel {
  border:1px solid var(--line-strong);
  border-radius:17px;
  overflow:hidden;
  background:var(--page);
  box-shadow:var(--shadow),inset 0 1px 0 var(--rim);
  min-width:0;
}

.code-topbar {
  padding:18px 20px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:var(--surface);
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:var(--ink-muted);
}

.code-topbar>span {
  display:flex;
  align-items:center;
  gap:8px;
}

.code-topbar .icon {
  width:16px;
  height:16px;
}

.copy-button {
  display:inline-flex;
  align-items:center;
  gap:5px;
  border:1px solid var(--line);
  background:var(--surface-muted);
  border-radius:6px;
  padding:5px 8px;
  color:var(--ink-muted);
  font-size:14px;
  min-height:32px;
}

.copy-button:hover {
  color:var(--ink);
  border-color:var(--line-strong);
}

[hidden] {
  display:none!important;
}

.code-tabs {
  display:flex;
  padding:0 20px;
  border-bottom:1px solid var(--line);
}

.code-tabs button {
  background:transparent;
  border:0;
  border-bottom:2px solid transparent;
  color:var(--ink-muted);
  padding:15px 19px;
  font-size:14px;
}

.code-tabs button[aria-selected=true] {
  border-bottom-color:var(--accent);
  color:var(--ink);
}

.code-body {
  padding:23px 24px;
  min-height:309px;
}

.code-filename {
  display:block;
  font-size:12px;
  color:var(--ink-faint);
  margin-bottom:23px;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}

pre {
  margin:0;
  overflow-x:auto;
  padding:0 0 12px;
  line-height:1.9;
  font-size:14px;
  scrollbar-width:thin;
  scrollbar-color:var(--line-strong) transparent;
}

pre code {
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}

.syntax-comment {
  color:var(--ink-faint);
}

.syntax-tag {
  color:var(--accent);
}

.syntax-value {
  color:var(--green-dark);
}

.code-note {
  font-size:16px;
  color:var(--ink-muted);
  line-height:1.8;
  margin:23px 0 15px;
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:14px;
  font-weight:600;
  color:var(--ink);
}

.text-link:hover {
  color:var(--accent);
}

.text-link .icon {
  width:15px;
  height:15px;
}

.code-body .text-link {
  font-size:14px;
}

.code-footer {
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 24px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--ink-faint);
  background:var(--surface);
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.centered {
  text-align:center;
  margin-inline:auto;
  max-width:730px;
}

.centered>p:last-child {
  margin-inline:auto;
}

.pricing-access-note {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--ink-faint);
  font-size:12px;
  margin:28px 0;
}

.pricing-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:810px;
  margin:auto;
  gap:20px;
}

.price-card {
  border:1px solid var(--line);
  border-radius:17px;
  padding:32px;
  background:var(--surface);
  box-shadow:inset 0 1px 0 var(--rim);
}

.price-card.starter {
  border-color:var(--line-strong);
  background:radial-gradient(ellipse at top right,var(--glow-violet),transparent 70%),var(--surface);
}

.plan-label {
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  font-size:17px;
  font-weight:700;
}

.launch-label {
  font-size:12px;
  font-weight:500;
  border:1px solid var(--blue-line);
  padding:3px 7px;
  border-radius:5px;
  color:var(--accent);
}

.plan-description {
  font-size:16px;
  margin:8px 0 22px;
  color:var(--ink-muted);
}

.plan-price {
  font-size:49px;
  letter-spacing:-.055em;
  font-weight:750;
  line-height:1.2;
}

.plan-price>span {
  font-size:12px;
  letter-spacing:0;
  font-weight:400;
  color:var(--ink-muted);
  margin-left:8px;
}

.plan-period {
  font-size:12px;
  color:var(--ink-faint);
  margin:8px 0 26px;
}

.price-card .button {
  width:100%;
  font-size:14px;
  min-height:46px;
}

.price-card ul {
  list-style:none;
  padding:24px 0 0;
  margin:24px 0 0;
  border-top:1px solid var(--line);
}

.price-card li {
  font-size:16px;
  color:var(--ink-muted);
  margin-top:13px;
  padding-left:20px;
  position:relative;
}

.price-card li:first-child {
  margin-top:0;
}

.price-card li:before {
  content:'✓';
  position:absolute;
  left:0;
  color:var(--green-dark);
  font-size:12px;
}

.pricing-fine-print {
  font-size:12px;
  line-height:1.8;
  color:var(--ink-faint);
  text-align:center;
  max-width:740px;
  margin:25px auto 0;
}

.faq {
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
}

.faq-intro>p:not(.eyebrow) {
  font-size:16px;
  color:var(--ink-muted);
  margin:25px 0 8px;
}

.faq-list details {
  border-bottom:1px solid var(--line);
}

.faq-list details:first-child {
  border-top:1px solid var(--line);
}

.faq-list summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  list-style:none;
  cursor:pointer;
  padding:22px 0;
  font-size:14px;
  font-weight:550;
  line-height:1.6;
}

.faq-list summary::-webkit-details-marker {
  display:none;
}

.faq-list summary>span {
  color:var(--ink-faint);
  font-size:20px;
  font-weight:400;
  transition:transform .18s;
}

.faq-list details[open] summary>span {
  transform:rotate(45deg);
  color:var(--accent);
}

.faq-list details[open] summary {
  color:var(--accent);
}

.faq-list details>p {
  margin:0;
  padding:0 30px 23px 0;
  font-size:16px;
  color:var(--ink-muted);
  line-height:1.85;
}

.faq-list p a {
  text-decoration:underline;
  text-underline-offset:4px;
  color:var(--ink);
}

.closing {
  position:relative;
  isolation:isolate;
  text-align:center;
  padding:63px 24px 83px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:var(--surface);
  margin-bottom:64px;
}

.closing:before {
  position:absolute;
  z-index:-1;
  pointer-events:none;
  content:"";
  inset:10% 0 -70%;
  background:radial-gradient(ellipse at 38% 68%,var(--glow-cyan),transparent 65%),radial-gradient(ellipse at 72% 75%,var(--glow-violet),transparent 65%);
}

.closing-mark {
  display:grid;
  place-items:center;
  width:47px;
  height:47px;
  margin:0 auto 26px;
  border:1px solid var(--line-strong);
  border-radius:14px;
  color:var(--ink);
  background:var(--surface-muted);
  box-shadow:inset 0 1px 0 var(--rim);
}

.closing-mark .icon {
  width:26px;
  height:26px;
}

.closing h2 {
  font-size:clamp(32px,4.5vw,55px);
  line-height:1.14;
  letter-spacing:-.06em;
}

.closing>.eyebrow {
  font-size:12px;
  color:var(--ink-muted);
}

.closing>p:not(.eyebrow) {
  font-size:16px;
  line-height:1.8;
  color:var(--ink-muted);
  margin:23px 0;
}

.email-note {
  display:block;
  font-size:12px;
  color:var(--ink-faint);
  margin-top:14px;
}

.site-footer nav {
  flex-wrap:wrap;
  display:flex;
  gap:26px;
  margin-left:auto;
  font-size:14px;
  color:var(--ink-muted);
}

.site-footer nav a {
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.site-footer nav a:hover {
  color:var(--ink);
}

@media(max-width:1000px) {
  .developer-grid {
    gap:35px;
    grid-template-columns:1fr 1.15fr;
  }
  .benefit-grid {
    gap:28px;
  }
  .faq {
    gap:45px;
  }
}

@media(max-width:850px) {
  .site-header {
    height:96px;
  }
  .site-header nav {
    margin:0;
    gap:20px;
  }
  .hero {
    padding-top:35px;
  }
  .feature-strip {
    gap:22px;
    flex-wrap:wrap;
  }
  .hero:before {
    inset-inline:-15px;
  }
  .showcase {
    margin-top:40px;
  }
  .section {
    padding-block:75px;
  }
  .developer-grid {
    grid-template-columns:1fr;
    gap:40px;
  }
  .developers-section {
    padding-block:75px;
  }
  .developer-copy>p:not(.eyebrow) {
    max-width:560px;
  }
  .setup-steps {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
  }
  .setup-steps li {
    margin:0;
    display:block;
  }
  .setup-steps li>span {
    display:block;
    margin-bottom:10px;
  }
  .code-body {
    min-height:0;
  }
  .faq {
    gap:30px;
    grid-template-columns:1fr 1.4fr;
  }
  .site-footer {
    gap:20px;
  }
  .site-footer nav {
    gap:17px;
  }
}

@media(max-width:700px) {
  .home-header {
    height:auto;
    padding-block:24px;
    flex-wrap:wrap;
    gap:16px;
  }
  .home-header nav {
    order:3;
    flex:1 0 100%;
    justify-content:center;
  }
}

@media(max-width:600px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .site-header {
    height:auto;
    min-height:82px;
    padding-block:20px;
    flex-wrap:wrap;
    gap:16px;
  }
  .wordmark {
    font-size:27px;
  }
  .site-header nav {
    display:flex;
    order:3;
    flex:1 0 100%;
    justify-content:center;
    gap:24px;
  }
  .home-header {
    gap:8px;
  }
  .header-actions {
    gap:8px;
  }
  .header-actions .header-action {
    min-height:44px;
    padding:8px;
  }
  .header-actions .header-action .icon {
    display:none;
  }
  .hero {
    padding-top:28px;
  }
  .beta-badge {
    font-size:12px;
    gap:7px;
    padding:6px 9px;
  }
  h1 {
    font-size:clamp(47px,12vw,68px);
    margin-top:25px;
  }
  .hero-copy {
    font-size:16px;
    max-width:380px;
  }
  .hero-actions {
    gap:9px;
    flex-wrap:wrap;
  }
  .hero-actions .button {
    font-size:14px;
    padding:12px 15px;
    gap:8px;
  }
  .hero-actions .icon {
    width:16px;
    height:16px;
  }
  .hero-note {
    font-size:12px;
  }
  .showcase {
    padding:5px;
    border-radius:17px;
    margin-top:34px;
  }
  .showcase-top {
    padding:12px 10px 15px;
    font-size:12px;
  }
  .example-label {
    font-size:12px;
  }
  .showcase-content {
    padding:18px 15px 0;
    border-radius:11px;
  }
  .place-title h2 {
    font-size:16px;
  }
  .place-title p {
    font-size:12px;
  }
  .place-icon {
    width:36px;
    height:36px;
  }
  .status-pill {
    font-size:12px;
  }
  .example-url {
    padding:8px 9px;
    gap:8px;
  }
  .example-url code {
    font-size:12px;
  }
  .url-label {
    display:none;
  }
  .route-options {
    grid-template-columns:1fr;
    gap:8px;
  }
  .route-option {
    display:grid;
    grid-template-columns:24px minmax(0,1fr);
    gap:2px 10px;
    padding:12px;
  }
  .route-icon {
    grid-column:1;
    grid-row:1/3;
    margin:0;
  }
  .route-icon>.icon {
    width:18px;
    height:18px;
  }
  .route-icon .diagonal {
    display:none;
  }
  .route-option strong {
    grid-column:2;
    font-size:14px;
  }
  .route-option>span:not(.route-icon) {
    grid-column:2;
    font-size:14px;
    margin:0;
  }
  .route-option small {
    grid-column:2;
    grid-row:3;
    align-self:center;
    margin:0;
    font-size:12px;
  }
  .route-explanation {
    min-height:75px;
  }
  .feature-strip {
    display:grid;
    grid-template-columns:repeat(2,auto);
    gap:18px 24px;
    font-size:12px;
    padding-block:27px 42px;
  }
  .site-footer {
    flex-wrap:wrap;
    gap:16px;
    padding-block:30px;
  }
  .site-footer>span {
    font-size:12px;
  }
  .site-footer>a:last-child {
    font-size:14px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }
}

@media(forced-colors:active) {
  .gradient-text {
    -webkit-text-fill-color:CanvasText;
    background:none;
    color:CanvasText;
  }
  .route-option[aria-pressed=true] {
    outline:2px solid Highlight;
  }
  .hero:before {
    display:none;
  }
}

@media(max-width:600px) {
  .section {
    padding-block:60px;
  }
  .section-heading {
    max-width:380px;
  }
  .section-heading>p:last-child {
    font-size:16px;
    margin-top:18px;
  }
  .eyebrow {
    font-size:12px;
    margin-bottom:16px;
  }
  .benefit-grid {
    grid-template-columns:1fr;
    gap:32px;
    margin-top:32px;
  }
  .benefit-grid article {
    padding-top:28px;
    border-top:1px solid var(--line);
  }
  .benefit-grid article:first-child {
    padding-top:0;
    border-top:0;
  }
  .feature-icon {
    width:36px;
    height:36px;
  }
  .benefit-grid h3 {
    margin-top:17px;
  }
  .benefit-grid p {
    font-size:16px;
  }
  .feature-caption {
    margin-top:15px;
  }
  .developers-section {
    padding-block:60px;
  }
  .developer-grid {
    gap:30px;
  }
  .setup-steps {
    display:block;
  }
  .setup-steps li {
    display:flex;
    margin-top:24px;
  }
  .setup-steps li>span {
    margin:0;
  }
  .setup-steps p {
    font-size:16px;
  }
  .code-topbar {
    padding:14px 16px;
    font-size:14px;
  }
  .code-body {
    padding:20px 16px;
  }
  .code-tabs {
    padding:0 12px;
  }
  .code-footer {
    padding:14px 16px;
    font-size:12px;
  }
  .pricing-access-note {
    font-size:12px;
    line-height:1.6;
    text-align:center;
  }
  .pricing-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .price-card {
    padding:26px;
  }
  .price-card .button {
    font-size:14px;
  }
  .price-card li {
    font-size:16px;
  }
  .plan-description {
    font-size:16px;
  }
  .plan-period {
    font-size:12px;
  }
  .pricing-fine-print {
    text-align:left;
    font-size:12px;
  }
  .faq {
    grid-template-columns:1fr;
    gap:30px;
  }
  .faq-intro h2 br {
    display:none;
  }
  .faq-list summary {
    font-size:14px;
    padding:20px 0;
  }
  .faq-list details>p {
    font-size:16px;
    padding-right:5px;
  }
  .closing {
    padding:42px 20px 48px;
    margin-bottom:25px;
    border-radius:18px;
  }
  .closing h2 {
    font-size:clamp(29px,7.5vw,43px);
  }
  .closing>p:not(.eyebrow) {
    font-size:16px;
  }
  .closing .button {
    font-size:14px;
  }
  .site-footer nav {
    width:100%;
    margin:0;
    gap:24px;
    font-size:14px;
  }
}
