:root {
  color-scheme: dark;
  --pc-bg: #101014;
  --pc-bg-2: #15151b;
  --pc-surface: #1f1f1f;
  --pc-surface-2: #252525;
  --pc-panel: #2a2a2a;
  --pc-panel-muted: #18181d;
  --pc-line: #333333;
  --pc-line-strong: #444444;
  --pc-text: #ffffff;
  --pc-text-soft: #e7e9f1;
  --pc-muted: #a7adbd;
  --pc-subtle: #737b8e;
  --pc-orange: #f37627;
  --pc-orange-2: #ee4e29;
  --pc-amber: #ffb020;
  --pc-purple: var(--pc-orange);
  --pc-purple-2: var(--pc-amber);
  --pc-lime: var(--pc-orange);
  --pc-blue: var(--pc-amber);
  --pc-indigo: var(--pc-orange-2);
  --pc-success: #22c55e;
  --pc-warning: #f59e0b;
  --pc-danger: #ef4444;
  --pc-radius-sm: 6px;
  --pc-radius: 8px;
  --pc-radius-lg: 12px;
  --pc-radius-xl: 18px;
  --pc-shadow: 0 18px 60px rgba(0, 0, 0, .34);
  --pc-shadow-soft: 0 12px 34px rgba(0, 0, 0, .24);
  --pc-max: 1440px;
  --pc-content: 1280px;
  --pc-reading: 740px;
  --pc-header: 74px;
  --pc-gradient: linear-gradient(135deg, var(--pc-orange-2), var(--pc-orange) 52%, var(--pc-amber));
  --pc-gradient-cool: linear-gradient(135deg, rgba(238,78,41,.95), rgba(243,118,39,.92) 48%, rgba(255,176,32,.88));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--pc-bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--pc-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(243, 118, 39, .2), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(255, 176, 32, .12), transparent 34rem),
    linear-gradient(180deg, #101014 0%, #111118 34%, #0d0d12 100%);
  line-height: 1.58;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

a { color: inherit; }
img { max-width: 100%; }
code, pre { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.pc-skip {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--pc-radius);
  background: var(--pc-lime);
  color: #101014;
  font-weight: 850;
}
.pc-skip:focus { top: 12px; }

.pc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--pc-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(16, 16, 20, .78);
  backdrop-filter: blur(18px);
}

.pc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
  text-decoration: none;
}
.pc-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 28px rgba(243,118,39,.32);
}
.pc-brand span { display: grid; line-height: 1.05; }
.pc-brand strong { font-size: 1rem; letter-spacing: 0; }
.pc-brand small { color: var(--pc-muted); font-size: .76rem; }

.pc-menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
  background: var(--pc-surface);
  color: var(--pc-text);
  font-weight: 850;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.pc-nav-spacer { flex: 1; }
.pc-nav > a,
.pc-nav-group > button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pc-radius);
  background: transparent;
  color: var(--pc-text-soft);
  padding: 0 10px;
  font: inherit;
  font-size: .92rem;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.pc-nav > a:hover,
.pc-nav-group > button:hover,
.pc-nav-group > button[aria-expanded="true"] {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.pc-nav-cta,
.pc-button {
  background: var(--pc-gradient) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(243, 118, 39, .32);
}
.pc-nav > a:focus-visible,
.pc-nav-group > button:focus-visible,
.pc-menu-toggle:focus-visible,
.pc-button:focus-visible,
.pc-card a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(243,118,39,.78);
  outline-offset: 3px;
}

.pc-nav-group { position: relative; }
.pc-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  min-width: 310px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-lg);
  background: rgba(31,31,31,.98);
  box-shadow: var(--pc-shadow);
}
.pc-dropdown-wide { width: min(820px, calc(100vw - 32px)); }
.pc-nav-group > button[aria-expanded="true"] + .pc-dropdown { display: grid; gap: 10px; }
.pc-dropdown > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.pc-dropdown section {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px;
  border-radius: var(--pc-radius);
  background: rgba(255,255,255,.035);
}
.pc-dropdown strong,
.pc-dropdown-overview {
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
}
.pc-dropdown a {
  padding: 8px 10px;
  border-radius: var(--pc-radius-sm);
  color: var(--pc-muted);
  text-decoration: none;
  font-size: .9rem;
}
.pc-dropdown a:hover { background: rgba(243,118,39,.11); color: #fff; }

.pc-main {
  width: min(var(--pc-max), 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 54px) 82px;
  position: relative;
}

.pc-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
  color: var(--pc-subtle);
  font-size: .9rem;
}
.pc-breadcrumbs a { color: var(--pc-muted); text-decoration: none; }

.pc-page-hero {
  min-height: min(760px, calc(100vh - var(--pc-header)));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 9vw, 116px) 0 clamp(42px, 7vw, 86px);
}
.pc-hero-copy { display: grid; gap: 20px; align-content: center; }
.pc-hero-copy,
.pc-page-hero > *,
.pc-split > *,
.pc-section > *,
.pc-doc-layout > *,
.pc-feature-panel > *,
.pc-ecosystem-proof > * {
  min-width: 0;
  max-width: 100%;
}
.pc-eyebrow {
  margin: 0;
  color: var(--pc-lime);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.pc-hero-copy h1,
.pc-page-header h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  line-height: .98;
  letter-spacing: 0;
}
.pc-hero-copy p,
.pc-section-head p,
.pc-card p,
.pc-doc-page p,
.pc-final-cta p {
  color: var(--pc-muted);
}
.pc-hero-copy > p {
  max-width: var(--pc-reading);
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.pc-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pc-proof-row span,
.pc-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--pc-text-soft);
  font-size: .82rem;
  font-weight: 830;
}
.pc-status[data-status="Beta"],
.pc-status[data-status="Controlled rollout"] {
  border-color: rgba(245,158,11,.36);
  color: #fcd38a;
  background: rgba(245,158,11,.08);
}
.pc-status[data-status="Operational"],
.pc-status[data-status="Available"] {
  border-color: rgba(243,118,39,.32);
  color: var(--pc-lime);
  background: rgba(243,118,39,.08);
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pc-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--pc-radius);
  text-decoration: none;
  font-weight: 900;
}
.pc-button-secondary {
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}

.pc-hero-visual,
.pc-code-composition {
  position: relative;
  min-width: 0;
}
.pc-hero-glow {
  position: absolute;
  inset: 10% 6%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(243,118,39,.4), transparent 60%);
  filter: blur(34px);
  z-index: 0;
}
.pc-hero-diagram {
  position: absolute;
  inset: auto 0 -22px auto;
  width: min(52%, 420px);
  opacity: .55;
  z-index: 1;
}
.pc-shot-stack {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 430px;
}
.pc-shot-stack .pc-shot {
  align-self: center;
  justify-self: center;
}
.pc-shot-1 { width: min(100%, 780px); }
.pc-shot-2 {
  width: min(44%, 320px);
  transform: translate(-32%, -12%);
  z-index: 3;
}
.pc-shot-3 {
  width: min(46%, 340px);
  transform: translate(34%, 12%);
  z-index: 4;
}
.pc-shot-stack .pc-shot:not(:first-child) {
  grid-area: 1 / 1;
}

.pc-shot,
.pc-diagram {
  margin: 0;
  min-width: 0;
}
.pc-shot {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--pc-radius-lg);
  background: var(--pc-surface);
  box-shadow: var(--pc-shadow);
}
.pc-shot-topbar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.pc-shot-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
}
.pc-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}
.pc-shot figcaption,
.pc-diagram figcaption {
  padding: 10px 12px 12px;
  color: var(--pc-muted);
  font-size: .86rem;
}
.pc-diagram {
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: var(--pc-shadow-soft);
}
.pc-diagram img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.pc-code-composition {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--pc-radius-xl);
  background: linear-gradient(145deg, rgba(31,31,31,.92), rgba(15,15,20,.96));
  box-shadow: var(--pc-shadow);
}
.pc-code-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.pc-code-tabs span,
.pc-method {
  border: 1px solid rgba(243,118,39,.22);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--pc-lime);
  background: rgba(243,118,39,.08);
  font-size: .78rem;
  font-weight: 900;
}
.pc-code-composition pre,
.pc-inline-code {
  display: block;
  min-width: 0;
  width: 100%;
  margin: 0;
  overflow: auto;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius);
  background: #101014;
  color: #dcecff;
  padding: 16px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.pc-code-composition .pc-shot { margin-top: 16px; }

.pc-capability-ribbon {
  width: min(var(--pc-content), 100%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto 34px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(31,31,31,.72);
}
.pc-capability-ribbon span {
  color: var(--pc-text-soft);
  font-weight: 850;
  font-size: .92rem;
}
.pc-capability-ribbon span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--pc-purple-2);
  vertical-align: middle;
}

.pc-section,
.pc-related,
.pc-final-cta {
  width: min(var(--pc-content), 100%);
  margin: clamp(28px, 5vw, 64px) auto;
}
.pc-section {
  min-width: 0;
  max-width: 100%;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--pc-radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--pc-surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}
.pc-layered-section,
.pc-hise-band,
.pc-trust-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(243,118,39,.2), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    var(--pc-surface);
}
.pc-section-head {
  display: grid;
  gap: 10px;
  max-width: var(--pc-reading);
  margin-bottom: 24px;
}
.pc-section-head h2,
.pc-final-cta h2,
.pc-related h2,
.pc-faq h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.pc-section-head p,
.pc-section p { margin: 0; }

.pc-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}
.pc-split.is-reversed > :first-child { order: 2; }
.pc-split > .pc-shot { width: 100%; }

.pc-card-grid,
.pc-api-list,
.pc-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pc-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--pc-radius-lg);
  background: rgba(42,42,42,.72);
}
.pc-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}
.pc-card p { margin: 0; }
.pc-card,
.pc-card p,
.pc-card h3,
.pc-workflow p,
.pc-workflow h3,
.pc-section p,
.pc-section h2,
.pc-doc-sidebar a,
.pc-doc-sidebar strong {
  overflow-wrap: anywhere;
}
.pc-card a,
.pc-related a,
.pc-prev-next a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}
.pc-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}
.pc-card-links a,
.pc-related a,
.pc-prev-next a {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius);
  background: rgba(255,255,255,.045);
}

.pc-workflow {
  counter-reset: workflow;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pc-workflow li {
  counter-increment: workflow;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-width: 0;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--pc-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.pc-workflow li > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pc-gradient);
  color: #fff;
  font-weight: 950;
}
.pc-workflow li > span::before { content: counter(workflow); }
.pc-workflow h3 { margin: 0 0 6px; }
.pc-workflow p { margin: 0; color: var(--pc-muted); font-size: .94rem; }

.pc-hise-sequence > div,
.pc-three-stage > div,
.pc-tabbed-proof > div {
  display: grid;
  min-width: 0;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pc-hise-sequence,
.pc-three-stage,
.pc-tabbed-proof {
  min-width: 0;
  max-width: 100%;
}
.pc-hise-sequence > div { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pc-hise-band .pc-hise-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pc-hise-band .pc-shot img,
.pc-hise-sequence .pc-shot img { aspect-ratio: 4 / 3; }

.pc-ecosystem-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}
.pc-ecosystem-proof h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}
.pc-ecosystem-proof p { font-size: 1.06rem; }
.pc-ecosystem-proof .pc-shot-stack { min-height: 360px; }

.pc-diagram-section .pc-diagram { margin-top: 16px; }
.pc-proof-gallery .pc-proof-grid {
  grid-template-columns: 1.25fr .85fr;
}
.pc-proof-gallery .pc-proof-main { grid-row: span 2; }

.pc-pricing-summary {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
}
.pc-price-card {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-xl);
  background: linear-gradient(150deg, rgba(243,118,39,.22), rgba(42,42,42,.78));
}
.pc-price-card span { color: var(--pc-lime); font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.pc-price-card strong { font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: .9; }
.pc-price-card p { margin: 0; color: var(--pc-text-soft); }

.pc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: var(--pc-text-soft);
  background: rgba(16,16,20,.45);
}
th, td {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  text-align: left;
  vertical-align: top;
}
th { color: #fff; background: rgba(255,255,255,.045); }

.pc-endpoint-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.pc-endpoint-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-lg);
  background: linear-gradient(180deg, rgba(16,16,20,.84), rgba(42,42,42,.72));
}
.pc-endpoint-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}
.pc-method {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--pc-lime);
  color: #101014;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
}
.pc-endpoint-card code {
  display: block;
  flex: 1 1 180px;
  min-width: 0;
  max-width: 100%;
  color: #fff;
  font-size: .92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pc-endpoint-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.pc-endpoint-card dl > div {
  display: grid;
  gap: 4px;
}
.pc-endpoint-card dt {
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.pc-endpoint-card dd {
  margin: 0;
  color: var(--pc-text-soft);
}
.pc-endpoint-card ul {
  margin: 0;
  padding-left: 18px;
}

.pc-feature-navigator {
  display: grid;
  gap: 22px;
}
.pc-feature-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pc-feature-tabs button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--pc-text-soft);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.pc-feature-tabs button[aria-selected="true"] {
  color: #101014;
  background: var(--pc-lime);
}
.pc-feature-panel {
  display: none;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
}
.pc-feature-panel.is-active { display: grid; }
.pc-feature-panel h3 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin: 0 0 10px; }

.pc-faq {
  display: grid;
  gap: 12px;
}
.pc-faq details {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-lg);
  background: rgba(255,255,255,.035);
}
.pc-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-weight: 850;
}
.pc-faq details p {
  padding: 0 18px 18px;
  margin: 0;
}

.pc-related {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pc-radius-xl);
  background: rgba(255,255,255,.03);
}
.pc-related div,
.pc-prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pc-final-cta {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(243,118,39,.22);
  border-radius: var(--pc-radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,176,32,.18), transparent 28rem),
    var(--pc-gradient-cool);
  box-shadow: var(--pc-shadow);
}
.pc-final-cta h2 {
  max-width: 820px;
  color: #fff;
}
.pc-final-cta p {
  max-width: var(--pc-reading);
  color: rgba(255,255,255,.86);
  margin: 0;
}

.pc-doc-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.pc-doc-sidebar {
  position: sticky;
  top: calc(var(--pc-header) + 18px);
  display: grid;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100vh - var(--pc-header) - 36px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--pc-radius-lg);
  background: rgba(31,31,31,.86);
}
.pc-doc-search { display: grid; gap: 7px; color: var(--pc-muted); font-size: .86rem; }
.pc-doc-search input {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--pc-radius);
  background: #101014;
  color: #fff;
  padding: 0 10px;
}
.pc-doc-search-results {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,122,24,.24);
  border-radius: var(--pc-radius);
  background: rgba(255,122,24,.08);
}
.pc-doc-search-results[hidden] { display: none; }
.pc-doc-search-results strong {
  color: #fff;
  font-size: .82rem;
}
.pc-doc-search-results p {
  margin: 0;
  color: var(--pc-muted);
  font-size: .86rem;
}
.pc-doc-search-results a {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-radius: var(--pc-radius);
  background: rgba(255,255,255,.05);
}
.pc-doc-search-results a span {
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
}
.pc-doc-search-results a small {
  color: var(--pc-muted);
  font-size: .78rem;
  line-height: 1.35;
}
.pc-doc-sidebar nav {
  display: grid;
  gap: 4px;
}
.pc-doc-sidebar nav strong {
  margin-top: 6px;
  color: var(--pc-lime);
  font-size: .78rem;
  text-transform: uppercase;
}
.pc-doc-sidebar a {
  padding: 9px 10px;
  border-radius: var(--pc-radius);
  color: var(--pc-muted);
  text-decoration: none;
  font-size: .92rem;
}
.pc-doc-sidebar a.is-active,
.pc-doc-sidebar a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.pc-doc-page .pc-page-hero {
  min-height: auto;
  padding-top: 18px;
}
.pc-doc-page .pc-hero-copy h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.pc-api-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pc-claim-notice,
.pc-note-panel {
  border-color: rgba(245,158,11,.24);
  background: rgba(245,158,11,.07);
}
.pc-claim-notice {
  display: grid;
  gap: 6px;
  max-width: var(--pc-reading);
  margin: 18px 0;
  padding: 16px;
  border-left: 4px solid var(--pc-warning);
}
.pc-claim-notice p,
.pc-claim-notice small { margin: 0; color: #fcd38a; }

.pc-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0b0b0f;
}
.pc-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pc-footer-top strong { font-size: 1.4rem; }
.pc-footer-top p { max-width: 620px; margin: 6px 0 0; color: var(--pc-muted); }
.pc-footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.pc-footer nav { display: grid; align-content: start; gap: 8px; }
.pc-footer nav strong {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
}
.pc-footer a {
  color: var(--pc-muted);
  text-decoration: none;
  font-size: .94rem;
}
.pc-footer a:hover { color: #fff; }
.pc-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--pc-subtle);
}

.pc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.82);
}
.pc-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--pc-radius);
  background: var(--pc-surface);
  color: #fff;
  font-weight: 850;
}
.pc-lightbox img {
  max-width: min(1180px, 96vw);
  max-height: 88vh;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--pc-radius-lg);
  box-shadow: var(--pc-shadow);
}

@media (max-width: 1180px) {
  .pc-dropdown > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pc-page-hero,
  .pc-split,
  .pc-ecosystem-proof,
  .pc-feature-panel,
  .pc-doc-layout {
    grid-template-columns: 1fr;
  }
  .pc-doc-sidebar { position: static; max-height: none; }
  .pc-workflow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pc-pricing-summary,
  .pc-card-grid,
  .pc-api-list,
  .pc-endpoint-list,
  .pc-proof-grid,
  .pc-hise-sequence > div,
  .pc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pc-split.is-reversed > :first-child { order: initial; }
}

@media (max-width: 1100px) {
  .pc-header { min-height: 66px; padding: 0 16px; }
  .pc-brand { min-width: 0; }
  .pc-menu-toggle { display: inline-flex; align-items: center; }
  .pc-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 66px);
    overflow: auto;
    padding: 12px 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(16,16,20,.98);
  }
  .pc-nav.is-open { display: grid; align-items: stretch; gap: 6px; }
  .pc-nav > a,
  .pc-nav-group > button { width: 100%; justify-content: space-between; }
  .pc-nav-spacer { display: none; }
  .pc-dropdown,
  .pc-dropdown-wide {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  :root { --pc-header: 66px; }
  .pc-main { padding: 18px 14px 56px; }
  .pc-page-hero { min-height: 0; padding: 42px 0 32px; }
  .pc-hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.1rem); }
  .pc-shot-stack { min-height: auto; display: grid; gap: 12px; }
  .pc-shot-stack .pc-shot,
  .pc-shot-2,
  .pc-shot-3 {
    grid-area: auto;
    width: 100%;
    transform: none;
  }
  .pc-hero-diagram { position: static; width: 100%; margin-bottom: 12px; }
  .pc-capability-ribbon {
    justify-content: flex-start;
    border-radius: var(--pc-radius-lg);
  }
  .pc-card-grid,
  .pc-api-list,
  .pc-endpoint-list,
  .pc-proof-grid,
  .pc-pricing-summary,
  .pc-hise-sequence > div,
  .pc-three-stage > div,
  .pc-tabbed-proof > div,
  .pc-hise-band .pc-hise-sequence,
  .pc-footer-grid {
    grid-template-columns: 1fr;
  }
  .pc-workflow { grid-template-columns: 1fr; }
  .pc-workflow li { min-height: 0; }
  .pc-section,
  .pc-related,
  .pc-final-cta { margin: 28px auto; }
  .pc-section { padding: 20px; border-radius: var(--pc-radius-lg); }
  .pc-shot img { aspect-ratio: 16 / 11; }
  .pc-footer-top { align-items: flex-start; flex-direction: column; }
  .pc-button { width: 100%; }
  .pc-actions { width: 100%; }
}

@media (max-width: 420px) {
  .pc-brand small { display: none; }
  .pc-brand strong { font-size: .95rem; }
  .pc-section { padding: 16px; }
  .pc-dropdown > div { grid-template-columns: 1fr; }
  .pc-feature-tabs { display: grid; grid-template-columns: 1fr 1fr; }
}

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