:root {
  color-scheme: light;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --white: #ffffff;
  --onyx: #0e0e10;
  --ink: #0e0e10;
  --current: #d43d2f;
  --blue: #275efe;
  --teal: #0a9b88;
  --amber: #d89419;
  --page: #f5f6f2;
  --surface: var(--white);
  --surface-muted: rgb(14 14 16 / 0.045);
  --text: var(--ink);
  --muted: rgb(21 22 26 / 0.64);
  --faint: rgb(21 22 26 / 0.08);
  --border: rgb(21 22 26 / 0.14);
  --border-strong: rgb(21 22 26 / 0.28);
  --red-soft: rgb(212 61 47 / 0.08);
  --red-border: rgb(212 61 47 / 0.34);
  --radius: 6px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;
  --space-9: 104px;
  --shadow-panel: 0 1px 0 rgb(21 22 26 / 0.08), 0 22px 60px rgb(21 22 26 / 0.08);
  --shadow-tight: 0 14px 34px rgb(21 22 26 / 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

pre,
code {
  overflow: auto;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

pre {
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius);
  padding: var(--space-4);
  color: var(--white);
  background: var(--onyx);
}

code.inline {
  display: inline;
  padding: 2px 5px;
  color: var(--onyx);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: var(--space-4);
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

ul {
  margin-top: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand-lockup {
  --brand-scale: 0.44;
  --brand-name-size: 21px;
  --brand-context-size: 11px;
  --brand-wordmark-width: 176px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-mark {
  --scale: var(--brand-scale);
  position: relative;
  display: block;
  width: calc(86px * var(--scale));
  height: calc(86px * var(--scale));
  flex: 0 0 auto;
  background: var(--onyx);
}

.brand-mark::before {
  content: "";
  position: absolute;
  right: calc(14px * var(--scale));
  top: calc(14px * var(--scale));
  width: calc(6px * var(--scale));
  height: calc(58px * var(--scale));
  background: var(--current);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: calc(15px * var(--scale));
  bottom: calc(18px * var(--scale));
  width: calc(44px * var(--scale));
  height: calc(6px * var(--scale));
  background: var(--white);
}

.brand-wordmark {
  position: relative;
  width: var(--brand-wordmark-width);
  min-width: 0;
  height: calc(86px * var(--brand-scale));
  padding-bottom: var(--brand-context-size);
}

.brand-wordmark strong {
  display: inline;
  color: var(--onyx);
  font-size: var(--brand-name-size);
  font-weight: 880;
  line-height: 1;
}

.brand-red {
  color: var(--current);
}

.brand-wordmark .brand-red {
  color: var(--current);
}

.brand-wordmark span {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 0;
  color: var(--muted);
  font-size: var(--brand-context-size);
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-links a,
.legal-links a {
  text-decoration: none;
}

.footer-links a:hover,
.legal-links a:hover {
  color: var(--current);
}

.header-actions,
.button-row {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 13px;
  color: var(--onyx);
  background: var(--white);
  font-weight: 820;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgb(21 22 26 / 0.04);
}

.button:hover {
  border-color: var(--onyx);
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--current);
  color: var(--white);
  background: var(--current);
}

.button.primary:hover {
  border-color: var(--onyx);
  background: var(--onyx);
}

.button.dark {
  border-color: var(--onyx);
  color: var(--white);
  background: var(--onyx);
}

.button.subtle {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.button.subtle:hover {
  border-color: var(--border);
  background: var(--surface-muted);
}

.button.glass {
  border-color: rgb(255 255 255 / 0.24);
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(10px);
}

.button.glass:hover {
  border-color: rgb(255 255 255 / 0.58);
}

.button.full {
  width: 100%;
}

.section {
  padding: var(--space-9) 0;
}

.section.compact {
  padding: var(--space-7) 0;
}

.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-header.centered {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto var(--space-7);
  text-align: center;
}

.section-header p {
  color: var(--muted);
  font-size: 16px;
}

.eyebrow {
  margin-bottom: var(--space-3);
  color: var(--current);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(820px, calc(100vh - 78px));
  overflow: hidden;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(7 8 12 / 0.96), rgb(7 8 12 / 0.78) 48%, rgb(7 8 12 / 0.38)),
    radial-gradient(circle at 78% 24%, rgb(126 141 157 / 0.34), transparent 34%),
    linear-gradient(145deg, #07080c 0%, #141820 48%, #2d343a 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent 0 49%, rgb(255 255 255 / 0.1) 50%, transparent 51% 100%),
    linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent 0%, black 34%, black 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(11 12 15 / 0.82));
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.storm-sky {
  position: absolute;
  inset: -18% -8%;
  background:
    radial-gradient(ellipse at 58% 18%, rgb(255 255 255 / 0.18), transparent 18%),
    radial-gradient(ellipse at 84% 22%, rgb(115 129 145 / 0.54), transparent 28%),
    radial-gradient(ellipse at 74% 50%, rgb(30 37 48 / 0.92), transparent 42%),
    radial-gradient(ellipse at 28% 18%, rgb(40 47 58 / 0.72), transparent 34%),
    linear-gradient(180deg, rgb(7 8 12 / 0.2), rgb(7 8 12 / 0.76));
  filter: blur(1px);
  animation: cloudShift 18s ease-in-out infinite;
}

.rain-layer {
  position: absolute;
  inset: -30%;
  opacity: 0.6;
  background-image: repeating-linear-gradient(
    112deg,
    transparent 0 31px,
    rgb(255 255 255 / 0.32) 32px,
    transparent 34px 66px
  );
  background-size: 220px 220px;
  will-change: background-position;
  animation: rainFall 1.45s linear infinite;
}

.rain-front {
  opacity: 0.36;
  background-image: repeating-linear-gradient(
    112deg,
    transparent 0 50px,
    rgb(255 255 255 / 0.42) 51px,
    transparent 54px 100px
  );
  background-size: 300px 300px;
  filter: blur(0.3px);
  animation-duration: 1.05s;
}

.storm-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 76% 42%, rgb(255 255 255 / 0.72), transparent 22%),
    linear-gradient(105deg, transparent 0 48%, rgb(183 210 255 / 0.34) 52%, transparent 66%),
    rgb(255 255 255 / 0.08);
  mix-blend-mode: screen;
  animation: skyFlash 5.6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-9) 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 5.7vw, 66px);
  line-height: 1;
}

.hero-lede {
  max-width: 540px;
  color: rgb(255 255 255 / 0.74);
  font-size: 22px;
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}


.product-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbf8, #eef2ef);
}

.product-intro {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  text-align: center;
}

.product-intro > p {
  max-width: 560px;
  margin-top: var(--space-4);
  color: var(--muted);
  font-size: 17px;
}

.product-intro .eyebrow {
  color: var(--current);
}

.product-grid {
  display: grid;
  gap: var(--space-5);
}

.api-demo {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgb(21 22 26 / 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgb(212 61 47 / 0.18), transparent 34%),
    radial-gradient(circle at 100% 18%, rgb(39 94 254 / 0.16), transparent 28%),
    #0f1116;
  box-shadow: 0 1px 0 rgb(21 22 26 / 0.08), 0 28px 80px rgb(21 22 26 / 0.18);
}

.api-demo::before {
  height: 34px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  content: "";
  background:
    radial-gradient(circle, #ff5f57 0 4px, transparent 5px) 16px 50% / 16px 16px no-repeat,
    radial-gradient(circle, #febc2e 0 4px, transparent 5px) 36px 50% / 16px 16px no-repeat,
    radial-gradient(circle, #28c840 0 4px, transparent 5px) 56px 50% / 16px 16px no-repeat,
    rgb(255 255 255 / 0.035);
}

.api-demo-toggle {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 0;
}

.api-demo-toggle button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgb(14 14 16 / 0.64);
  background: rgb(255 255 255 / 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 1px 0 rgb(21 22 26 / 0.04);
}

.api-demo-toggle button:hover {
  color: var(--onyx);
  border-color: rgb(212 61 47 / 0.32);
  background: var(--white);
}

.api-demo-toggle button.is-active {
  color: var(--white);
  border-color: var(--current);
  background: var(--current);
  box-shadow: 0 10px 24px rgb(212 61 47 / 0.18);
}

.api-example-panel {
  display: grid;
  min-width: 0;
}

.api-example-panel[hidden] {
  display: none;
}

.request-line {
  display: grid;
  gap: var(--space-3);
  border-bottom: 1px solid rgb(255 255 255 / 0.11);
  padding: var(--space-4);
  color: rgb(255 255 255 / 0.74);
}

.request-heading {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  min-width: 0;
}

.request-method {
  flex: 0 0 auto;
  border: 1px solid rgb(212 61 47 / 0.48);
  border-radius: 999px;
  padding: 4px 9px;
  color: rgb(255 255 255 / 0.92);
  background: rgb(212 61 47 / 0.24);
  font-size: 12px;
  font-weight: 880;
}

.request-heading code {
  display: block;
  min-width: 0;
  color: rgb(255 255 255 / 0.86);
  font-size: 12px;
  line-height: 1.4;
  overflow: auto;
  white-space: nowrap;
}

.curl-demo {
  display: grid;
  gap: 5px;
  overflow-x: auto;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  padding: var(--space-3);
  background: rgb(255 255 255 / 0.035);
}

.curl-row {
  display: grid;
  grid-template-columns: max-content auto;
  gap: var(--space-3);
  align-items: center;
  width: max-content;
  min-width: 100%;
  border-radius: 6px;
  padding: 1px 2px;
}

.curl-row.is-highlighted {
  background: linear-gradient(90deg, rgb(212 61 47 / 0.12), transparent 72%);
}

.curl-row code {
  display: block;
  color: #d6deeb;
  font-size: 12px;
  line-height: 1.75;
  overflow-wrap: normal;
  white-space: nowrap;
}

.curl-command {
  color: #c792ea;
}

.curl-url {
  color: #89ddff;
}

.curl-option {
  color: #82aaff;
}

.curl-string {
  color: #ecc48d;
}

.curl-note {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgb(212 61 47 / 0.32);
  border-radius: 999px;
  padding: 2px 8px;
  color: #ffd6cf;
  background: rgb(212 61 47 / 0.12);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
  white-space: nowrap;
}

.response-json {
  max-height: 390px;
  border: 0;
  border-radius: 0;
  padding: var(--space-5);
  background: transparent;
  color: #d6deeb;
  font-size: 12px;
  white-space: pre;
}

.response-json code {
  display: block;
  min-width: max-content;
  white-space: pre;
}

.json-key {
  color: #82aaff;
}

.json-string {
  color: #ecc48d;
}

.json-number {
  color: #f78c6c;
}

.json-boolean,
.json-null {
  color: #c792ea;
}

.json-punct {
  color: #89ddff;
}

.peril-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.peril-card {
  --accent: var(--current);
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.86)),
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 42%);
  box-shadow: var(--shadow-tight);
}

.peril-card::before {
  position: absolute;
  left: var(--space-5);
  top: var(--space-4);
  width: 32px;
  height: 3px;
  content: "";
  background: var(--accent);
}

.peril-card.rain {
  --accent: var(--blue);
}

.peril-card.wind {
  --accent: var(--amber);
}

.peril-card.tornado {
  --accent: var(--teal);
}

.peril-card h3,
.peril-card p {
  position: relative;
  z-index: 1;
}

.peril-card h3 {
  margin-top: var(--space-5);
  font-size: 16px;
}

.peril-card p {
  color: var(--muted);
  font-size: 13px;
}

.reports-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #f6f7f4),
    var(--white);
}

.reports-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(21 22 26 / 0.045) 1px, transparent 1px),
    linear-gradient(rgb(21 22 26 / 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.reports-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
}

.reports-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.78fr);
  gap: var(--space-7);
  align-items: center;
}

.report-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.report-callout-grid article {
  position: relative;
  display: grid;
  gap: var(--space-2);
  min-width: 0;
  border: 1px solid rgb(21 22 26 / 0.12);
  border-top: 3px solid var(--current);
  border-radius: var(--radius);
  padding: 18px var(--space-4) var(--space-4);
  background:
    linear-gradient(180deg, rgb(212 61 47 / 0.035), transparent 46%),
    rgb(255 255 255 / 0.84);
  box-shadow: 0 14px 40px rgb(21 22 26 / 0.07);
}

.report-callout-grid span {
  color: var(--current);
  font-size: 15px;
  font-weight: 880;
  line-height: 1.25;
}

.report-callout-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.section-header .eyebrow.brand-red {
  color: var(--current);
}

.reports-copy {
  display: grid;
  gap: var(--space-4);
  max-width: 500px;
}

.reports-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.report-showcase {
  overflow: hidden;
  border: 1px solid rgb(21 22 26 / 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(212 61 47 / 0.12), transparent 34%),
    linear-gradient(45deg, rgb(10 155 136 / 0.11), transparent 38%),
    #101216;
  box-shadow: 0 28px 80px rgb(21 22 26 / 0.18);
}

.report-showcase-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding: var(--space-3) var(--space-4);
  color: rgb(255 255 255 / 0.74);
  background: rgb(255 255 255 / 0.04);
  font-size: 12px;
  font-weight: 820;
}

.report-showcase-bar strong {
  border: 1px solid rgb(10 155 136 / 0.42);
  border-radius: 999px;
  padding: 3px 9px;
  color: #dffbf6;
  background: rgb(10 155 136 / 0.18);
  font-size: 11px;
  text-transform: uppercase;
}

.report-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
}

.report-form-preview,
.report-preview-panel {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: rgb(255 255 255 / 0.065);
}

.report-form-preview div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  padding-bottom: var(--space-3);
}

.report-form-preview div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.report-form-preview span,
.report-preview-heading span {
  color: rgb(255 255 255 / 0.5);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-form-preview strong,
.report-preview-heading strong {
  min-width: 0;
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.report-preview-heading {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}

.report-event-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  border: 1px solid rgb(255 255 255 / 0.11);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: rgb(255 255 255 / 0.04);
}

.report-event-row.selected {
  border-color: rgb(212 61 47 / 0.42);
  background: linear-gradient(90deg, rgb(212 61 47 / 0.14), rgb(255 255 255 / 0.045));
}

.report-check {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--current);
  border-radius: 4px;
  background: var(--current);
}

.report-check::after {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: rotate(40deg);
}

.report-check.empty {
  border-color: rgb(255 255 255 / 0.34);
  background: transparent;
}

.report-check.empty::after {
  display: none;
}

.report-event-row strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.report-event-row small {
  display: block;
  margin-top: 3px;
  color: rgb(255 255 255 / 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.providers-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgb(11 12 15 / 0.96), rgb(21 22 26 / 0.98)),
    #111216;
}

.providers-section .eyebrow {
  color: rgb(255 167 157);
}

.providers-grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.72fr) minmax(0, 0.48fr);
  gap: var(--space-8);
  align-items: center;
}

.providers-copy {
  justify-self: start;
  max-width: 500px;
  text-align: left;
}

.providers-copy p {
  max-width: 500px;
  margin-top: var(--space-4);
  color: rgb(255 255 255 / 0.64);
}

.provider-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: var(--radius);
  padding: var(--space-5);
  background:
    radial-gradient(circle at 51% 48%, rgb(212 61 47 / 0.26), transparent 20%),
    radial-gradient(circle at 18% 18%, rgb(39 94 254 / 0.13), transparent 26%),
    radial-gradient(circle at 84% 80%, rgb(10 155 136 / 0.14), transparent 28%),
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    rgb(255 255 255 / 0.035);
  background-size: 48px 48px;
  box-shadow: 0 34px 90px rgb(0 0 0 / 0.28);
}

.provider-board::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 36%, rgb(255 255 255 / 0.06) 36% 37%, transparent 37% 100%),
    linear-gradient(65deg, transparent 0 58%, rgb(255 255 255 / 0.05) 58% 59%, transparent 59% 100%);
  pointer-events: none;
}

.provider-card {
  position: relative;
  z-index: 1;
  min-height: 170px;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: var(--radius);
  padding: var(--space-5);
  color: rgb(255 255 255 / 0.82);
  background: rgb(255 255 255 / 0.07);
  box-shadow: 0 16px 42px rgb(0 0 0 / 0.18);
  backdrop-filter: blur(10px);
}

.provider-card::before {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: var(--space-5);
  content: "";
  background: var(--current);
}

.provider-card.radar::before {
  background: var(--blue);
}

.provider-card.reports::before {
  background: var(--current);
}

.provider-card.records::before {
  background: var(--amber);
}

.provider-card.warnings::before {
  background: var(--teal);
}

.provider-card.forecast::before {
  background: rgb(255 255 255 / 0.82);
}

.provider-card span {
  color: rgb(255 255 255 / 0.56);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.provider-card strong {
  display: block;
  margin-top: var(--space-2);
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.provider-card p {
  margin-top: var(--space-3);
  color: rgb(255 255 255 / 0.62);
  font-size: 13px;
}

.use-case-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgb(212 61 47 / 0.055) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #fbfbf8, #f2f4ef);
}

.use-case-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgb(21 22 26 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(21 22 26 / 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.use-case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.78fr);
  gap: var(--space-8);
  align-items: center;
}

.use-case-grid > div:first-child {
  justify-self: start;
  max-width: 460px;
  text-align: left;
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  counter-reset: usecase;
}

.use-case-list article {
  position: relative;
  display: grid;
  gap: var(--space-3);
  min-height: 210px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--current);
  border-radius: var(--radius);
  padding: var(--space-5);
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 18px 44px rgb(21 22 26 / 0.08);
  counter-increment: usecase;
}

.use-case-list article:nth-child(even) {
  transform: translateY(28px);
}

.use-case-list article::before {
  color: rgb(212 61 47 / 0.16);
  content: "0" counter(usecase);
  font-size: 54px;
  font-weight: 900;
  line-height: 0.9;
}

.use-case-list h3 {
  color: var(--current);
  margin-bottom: 0;
  font-weight: 880;
  font-size: 19px;
}

.use-case-list p {
  color: var(--muted);
  font-size: 14px;
}

.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.pricing-card {
  display: grid;
  gap: var(--space-4);
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  background: var(--surface);
  box-shadow: var(--shadow-tight);
}

.pricing-card.highlight {
  border-color: var(--current);
  box-shadow: inset 0 4px 0 var(--current), var(--shadow-tight);
}

.pricing-card p {
  color: var(--muted);
}

.pricing-card .pricing-list {
  align-self: start;
  margin-top: var(--space-1);
  margin-bottom: var(--space-2);
  padding-left: 0;
  list-style: none;
}

.pricing-card .pricing-list li {
  position: relative;
  padding-left: 20px;
  color: rgb(21 22 26 / 0.72);
  font-size: 14px;
}

.pricing-card .pricing-list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--current);
  content: "";
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-4);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  display: grid;
  gap: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.card.highlight {
  border-color: var(--current);
  box-shadow: inset 0 4px 0 var(--current), var(--shadow-panel);
}

.card p,
.feature-list,
.pricing-list,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.feature-list,
.pricing-list {
  display: grid;
  gap: var(--space-2);
  margin-bottom: 0;
  padding-left: 18px;
}

.source-table,
.param-table {
  overflow: auto;
  border: 1px solid var(--border);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.tier-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 830;
  white-space: nowrap;
}

.tier-label.primary {
  border-color: var(--current);
  color: var(--current);
}

.price {
  font-size: 31px;
  font-weight: 880;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.docs-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-7) 0;
}

.docs-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: var(--space-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: var(--white);
}

.docs-sidebar a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.docs-sidebar a:hover {
  color: var(--current);
}

.docs-content {
  display: grid;
  gap: var(--space-7);
}

.docs-section {
  display: grid;
  gap: var(--space-4);
  scroll-margin-top: 100px;
}

.docs-section > p {
  color: var(--muted);
}

.code-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-4);
}

.callout {
  border-left: 3px solid var(--current);
  padding: var(--space-4);
  background: var(--white);
}

.callout p {
  color: var(--muted);
}

.api-docs-page {
  background:
    linear-gradient(180deg, #ffffff 0, #f6f7f4 460px, var(--page) 100%);
}

.api-docs-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 86% 18%, rgb(212 61 47 / 0.14), transparent 28%),
    radial-gradient(circle at 70% 72%, rgb(39 94 254 / 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f5f6f2);
}

.api-docs-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.58;
  background:
    linear-gradient(90deg, rgb(21 22 26 / 0.055) 1px, transparent 1px),
    linear-gradient(rgb(21 22 26 / 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 100%);
}

.api-docs-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-8) 0;
}

.api-docs-hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.4vw, 68px);
}

.api-docs-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
}

.docs-command-card,
.docs-code-panel {
  overflow: hidden;
  border: 1px solid rgb(21 22 26 / 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgb(212 61 47 / 0.16), transparent 34%),
    radial-gradient(circle at 100% 12%, rgb(39 94 254 / 0.16), transparent 30%),
    #0f1116;
  box-shadow: 0 24px 70px rgb(21 22 26 / 0.16);
}

.docs-command-card pre,
.docs-code-panel pre {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.docs-code-title {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 0.11);
  padding: var(--space-3) var(--space-4);
  color: rgb(255 255 255 / 0.76);
  background: rgb(255 255 255 / 0.035);
  font-size: 12px;
}

.docs-code-title span,
.method-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(212 61 47 / 0.46);
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--current);
  background: rgb(212 61 47 / 0.1);
  font-size: 11px;
  font-weight: 880;
  line-height: 1.3;
}

.docs-code-title strong {
  overflow: hidden;
  color: var(--white);
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.api-docs-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
  padding: var(--space-7) 0 var(--space-9);
}

.api-docs-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: rgb(255 255 255 / 0.86);
  box-shadow: 0 1px 0 rgb(21 22 26 / 0.04);
  backdrop-filter: blur(18px);
}

.api-docs-sidebar a {
  border-radius: 5px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.api-docs-sidebar a:hover {
  color: var(--onyx);
  background: var(--surface-muted);
}

.api-docs-main {
  display: grid;
  gap: var(--space-7);
  min-width: 0;
}

.api-reference-section {
  display: grid;
  gap: var(--space-5);
  scroll-margin-top: 100px;
}

.api-section-heading {
  display: grid;
  gap: var(--space-3);
  max-width: 820px;
}

.api-section-heading h2,
.endpoint-heading h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.api-section-heading > p:not(.eyebrow),
.endpoint-heading p {
  color: var(--muted);
  font-size: 16px;
}

.ai-panel,
.endpoint-reference {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  background: var(--white);
  box-shadow: var(--shadow-panel);
}

.ai-panel {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.88)),
    radial-gradient(circle at 92% 12%, rgb(10 155 136 / 0.14), transparent 30%),
    radial-gradient(circle at 0 82%, rgb(212 61 47 / 0.12), transparent 30%);
}

.ai-grid,
.docs-basics-grid,
.value-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.value-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-grid article,
.docs-mini-card,
.prompt-card,
.docs-note,
.value-columns article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  background: var(--white);
}

.ai-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: var(--space-3);
  border-radius: 50%;
  color: var(--white);
  background: var(--onyx);
  font-size: 12px;
  font-weight: 880;
}

.ai-grid h3,
.value-columns h3,
.docs-note strong {
  margin-bottom: var(--space-2);
}

.ai-grid p,
.docs-note p,
.prompt-card p:not(.eyebrow),
.value-columns p {
  color: var(--muted);
}

.docs-example-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: var(--space-4);
  align-items: stretch;
}

.docs-example-pair > pre {
  min-height: 100%;
}

.docs-basics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-mini-card {
  display: grid;
  gap: var(--space-2);
}

.docs-mini-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-mini-card strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.endpoint-heading {
  display: flex;
  gap: var(--space-5);
  align-items: start;
  justify-content: space-between;
}

.endpoint-heading h2 {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.endpoint-heading > div {
  display: grid;
  gap: var(--space-3);
  max-width: 820px;
}

.endpoint-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: var(--space-5);
  align-items: start;
}

.docs-code-stack {
  position: sticky;
  top: 102px;
  display: grid;
  gap: var(--space-4);
}

.docs-note {
  border-color: var(--red-border);
  background: var(--red-soft);
}

.compact-table table {
  min-width: 560px;
}

.docs-token-list {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.docs-token-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--onyx);
  background: var(--surface-muted);
  font-size: 12px;
  font-weight: 820;
}

.api-docs-page.docs-reference {
  background: #f7f7f4;
}

.docs-reference.shell,
.docs-reference .shell.api-docs-layout,
.api-docs-page.docs-reference .shell.api-docs-layout {
  width: min(1860px, calc(100% - 32px));
}

.docs-reference .api-docs-layout {
  grid-template-columns: 196px minmax(0, 1fr);
  gap: var(--space-5);
  padding: var(--space-6) 0 var(--space-8);
}

.docs-reference .api-docs-sidebar {
  top: 98px;
  gap: 2px;
  border-color: var(--border);
  padding: var(--space-3);
  background: rgb(255 255 255 / 0.9);
  box-shadow: none;
}

.docs-sidebar-title {
  padding: 8px 10px 10px;
  color: var(--onyx);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-reference .api-docs-sidebar a {
  position: relative;
  border-radius: 5px;
  padding: 8px 10px 8px 14px;
  color: rgb(14 14 16 / 0.62);
  font-size: 13px;
  font-weight: 760;
}

.docs-reference .api-docs-sidebar a::before {
  position: absolute;
  inset: 8px auto 8px 0;
  width: 3px;
  border-radius: 3px;
  content: "";
  background: transparent;
}

.docs-reference .api-docs-sidebar a.active {
  color: var(--onyx);
  background: var(--surface-muted);
}

.docs-reference .api-docs-sidebar a.active::before {
  background: var(--current);
}

.docs-reference .api-docs-main {
  gap: var(--space-6);
  min-width: 0;
}

.api-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  background: var(--white);
  box-shadow: 0 1px 0 rgb(21 22 26 / 0.04);
}

.docs-section-card {
  display: grid;
  gap: var(--space-5);
  scroll-margin-top: 98px;
}

.docs-card-heading {
  display: grid;
  gap: var(--space-3);
  max-width: 820px;
}

.docs-card-heading.compact {
  max-width: 760px;
}

.docs-reference h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.docs-reference h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
}

.docs-reference h3 {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.3;
}

.docs-card-heading p:not(.eyebrow),
.docs-subsection > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.overview-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.overview-facts div {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: #fbfbf9;
}

.overview-facts span {
  display: block;
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overview-facts code {
  display: block;
  max-width: 100%;
  color: var(--onyx);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: normal;
}

.docs-subsection {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}

.docs-reference .docs-example-pair.tight {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.docs-reference .ai-usage-row {
  align-items: stretch;
}

.docs-spec-link {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  color: var(--onyx);
  background: #fbfbf9;
  text-decoration: none;
}

.docs-spec-link:hover {
  border-color: var(--current);
}

.docs-spec-link span {
  color: var(--current);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.docs-spec-link strong,
.docs-spec-link small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.docs-spec-link strong {
  font-size: 15px;
  line-height: 1.3;
}

.docs-spec-link small {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.docs-reference .prompt-card {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
  background: #fbfbf9;
}

.docs-reference .prompt-card .eyebrow {
  margin-bottom: 0;
  color: var(--current);
}

.docs-reference .prompt-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.endpoint-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.58fr);
  gap: var(--space-4);
  align-items: start;
}

.report-endpoint-block {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.endpoint-card {
  min-width: 0;
}

.docs-reference .endpoint-card .docs-card-heading h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.endpoint-examples {
  position: sticky;
  top: 98px;
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.endpoint-examples .docs-code-panel {
  box-shadow: none;
}

.endpoint-examples pre {
  max-height: 420px;
  padding: var(--space-4);
  font-size: 12px;
  line-height: 1.55;
  overflow: auto;
  overflow-wrap: normal;
  white-space: pre;
  word-break: normal;
}

.endpoint-examples pre code {
  display: block;
  min-width: max-content;
  white-space: pre;
}

.docs-reference .docs-code-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-width: 0;
}

.docs-reference .docs-code-title strong {
  min-width: 0;
  font-size: 12px;
}

.docs-reference .method-pill {
  color: var(--current);
  white-space: nowrap;
}

.docs-reference .docs-table {
  min-width: 0;
  border-radius: var(--radius);
}

.docs-reference .docs-table table {
  min-width: 0;
  table-layout: fixed;
}

.docs-reference .docs-table th,
.docs-reference .docs-table td {
  padding: 11px 12px;
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}

.docs-reference .docs-table th {
  font-size: 10px;
}

.docs-reference .docs-table td {
  color: rgb(14 14 16 / 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.docs-reference .docs-table td:first-child {
  color: var(--onyx);
  font-weight: 760;
}

.docs-reference .docs-table td:nth-child(2):not(:last-child),
.docs-reference .docs-table td:nth-child(3):not(:last-child),
.docs-reference .docs-table td:nth-child(4):not(:last-child) {
  color: rgb(14 14 16 / 0.68);
}

.docs-reference .docs-table thead th:nth-child(2):not(:last-child),
.docs-reference .docs-table tbody td:nth-child(2):not(:last-child),
.docs-reference .docs-table thead th:nth-child(3):not(:last-child),
.docs-reference .docs-table tbody td:nth-child(3):not(:last-child),
.docs-reference .docs-table thead th:nth-child(4):not(:last-child),
.docs-reference .docs-table tbody td:nth-child(4):not(:last-child) {
  text-align: center;
}

.docs-reference .param-reference th:first-child,
.docs-reference .param-reference td:first-child,
.docs-reference .response-reference th:first-child,
.docs-reference .response-reference td:first-child {
  width: 29%;
}

.docs-reference .param-reference th:nth-child(2),
.docs-reference .param-reference td:nth-child(2),
.docs-reference .response-reference th:nth-child(2),
.docs-reference .response-reference td:nth-child(2) {
  width: 17%;
}

.docs-reference .provider-reference th,
.docs-reference .provider-reference td {
  text-align: left !important;
  vertical-align: top;
}

.docs-reference .provider-reference th:first-child,
.docs-reference .provider-reference td:first-child {
  width: 17%;
}

.docs-reference .provider-reference th:nth-child(2),
.docs-reference .provider-reference td:nth-child(2) {
  width: 24%;
}

.docs-reference .provider-reference th:nth-child(3),
.docs-reference .provider-reference td:nth-child(3) {
  width: 27%;
}

.response-object-list {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.response-object-definition {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
}

.response-object-definition h4 {
  margin: 0;
  color: var(--onyx);
  font-size: 14px;
  line-height: 1.35;
}

.docs-reference .object-reference th,
.docs-reference .object-reference td {
  text-align: left !important;
  vertical-align: top;
}

.docs-reference .object-reference th:first-child,
.docs-reference .object-reference td:first-child {
  width: 24%;
}

.docs-reference .object-reference th:nth-child(2),
.docs-reference .object-reference td:nth-child(2) {
  width: 18%;
}

.docs-reference code.inline {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1;
  overflow-wrap: normal;
  vertical-align: middle;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 5px;
  padding: 4px 9px;
  color: rgb(255 255 255 / 0.78);
  background: rgb(255 255 255 / 0.06);
  cursor: pointer;
  font-size: 11px;
  font-weight: 820;
}

.copy-button:hover {
  border-color: rgb(255 255 255 / 0.38);
  color: var(--white);
}

.docs-reference .language-json {
  color: #d6deeb;
}

.docs-reference .json-key {
  color: #82aaff;
}

.docs-reference .json-string {
  color: #c3e88d;
}

.docs-reference .json-number {
  color: #f78c6c;
}

.docs-reference .json-boolean {
  color: #c792ea;
}

.docs-reference .json-null {
  color: #ffcb6b;
}

.docs-details {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}

.docs-details summary {
  cursor: pointer;
  color: var(--onyx);
  font-size: 14px;
  font-weight: 840;
}

.docs-details[open] summary {
  margin-bottom: var(--space-3);
}

.docs-reference .value-columns {
  gap: var(--space-3);
}

.docs-reference .value-columns article {
  min-width: 0;
  padding: var(--space-3);
  background: #fbfbf9;
}

.docs-reference .docs-token-list span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.legal-hero {
  padding: var(--space-7) 0 var(--space-5);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.legal-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.legal-copy {
  display: grid;
  gap: var(--space-5);
  max-width: 880px;
  padding: var(--space-7) 0;
}

.legal-copy section {
  display: grid;
  gap: var(--space-3);
}

.content-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(115deg, rgb(212 61 47 / 0.08) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, var(--white), #f2f4ef);
}

.content-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgb(21 22 26 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(21 22 26 / 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black 0%, black 62%, transparent 96%);
  pointer-events: none;
}

.content-hero::after {
  position: absolute;
  right: min(7vw, 96px);
  bottom: -58px;
  width: min(36vw, 420px);
  height: 180px;
  content: "";
  background: var(--current);
  opacity: 0.12;
  transform: skewX(-18deg);
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: var(--space-9) 0 var(--space-8);
}

.content-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 5.2vw, 64px);
}

.content-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.content-section {
  padding: var(--space-8) 0 var(--space-9);
  background:
    radial-gradient(circle at 88% 12%, rgb(39 94 254 / 0.06), transparent 28%),
    linear-gradient(180deg, #fbfbf8, var(--page));
}

.content-grid,
.policy-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.86fr);
  gap: var(--space-7);
  align-items: start;
}

.content-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: var(--space-3);
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid var(--current);
  border-radius: var(--radius);
  padding: var(--space-5);
  background: rgb(255 255 255 / 0.9);
  box-shadow: var(--shadow-tight);
}

.content-aside::after {
  position: absolute;
  right: -56px;
  bottom: -68px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgb(212 61 47 / 0.18);
  border-radius: 50%;
  background: rgb(212 61 47 / 0.06);
}

.content-aside span {
  color: var(--current);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-aside strong {
  max-width: 300px;
  font-size: 22px;
  line-height: 1.12;
}

.content-aside p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.content-stack,
.policy-copy {
  display: grid;
  gap: var(--space-4);
}

.content-card,
.value-grid article,
.policy-copy section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  background: rgb(255 255 255 / 0.92);
  box-shadow: var(--shadow-tight);
}

.content-card {
  display: grid;
  gap: var(--space-3);
}

.content-card h2,
.policy-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.content-card p,
.value-grid p,
.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.content-card p + p,
.policy-copy p + p {
  margin-top: var(--space-3);
}

.content-card a,
.policy-copy a {
  color: var(--current);
  font-weight: 820;
}

.accent-card {
  border-color: var(--red-border);
  background:
    linear-gradient(135deg, rgb(212 61 47 / 0.09), transparent 48%),
    var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.value-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.value-grid article::before {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: var(--space-5);
  content: "";
  background: var(--current);
}

.value-grid article:nth-child(2)::before {
  background: var(--blue);
}

.value-grid article:nth-child(3)::before {
  background: var(--teal);
}

.value-grid h3 {
  font-size: 19px;
}

.policy-copy section {
  display: grid;
  gap: var(--space-3);
  scroll-margin-top: 100px;
}

.policy-copy section:nth-child(4) {
  border-color: var(--red-border);
  box-shadow: inset 4px 0 0 var(--current), var(--shadow-tight);
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background: var(--onyx);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-6) 0;
}

.footer-inner .brand-wordmark {
  color: var(--white);
}

.footer-inner .brand-wordmark strong {
  color: var(--white);
}

.footer-inner .brand-wordmark .brand-red {
  color: var(--current);
}

.footer-inner .brand-wordmark span {
  color: rgb(255 255 255 / 0.68);
}

.footer-copy {
  display: grid;
  gap: var(--space-3);
  max-width: 560px;
}

.footer-copy p,
.footer-meta {
  color: rgb(255 255 255 / 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: var(--space-3) var(--space-5);
  font-size: 13px;
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--current);
  text-underline-offset: 4px;
}

@keyframes cloudShift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-2%, 1%, 0) scale(1.04);
  }
}

@keyframes rainFall {
  to {
    background-position: -220px 360px;
  }
}

@keyframes skyFlash {
  0%,
  74%,
  77%,
  100% {
    opacity: 0;
  }
  74.8% {
    opacity: 0.62;
  }
  75.6% {
    opacity: 0.16;
  }
  76.3% {
    opacity: 0.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1060px) {
  .product-intro,
  .product-grid,
  .reports-layout,
  .report-callout-grid,
  .report-workflow-grid,
  .providers-grid,
  .use-case-grid,
  .section-header,
  .grid-2,
  .grid-3,
  .grid-4,
  .docs-layout,
  .code-grid,
  .api-docs-hero-inner,
  .api-docs-layout,
  .endpoint-split,
  .endpoint-row,
  .docs-example-pair,
  .ai-grid,
  .docs-basics-grid,
  .overview-facts,
  .value-columns,
  .content-grid,
  .policy-layout,
  .value-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: end;
  }

  .docs-sidebar {
    position: static;
  }

  .api-docs-sidebar,
  .docs-code-stack,
  .endpoint-examples {
    position: static;
  }

  .endpoint-heading {
    display: grid;
  }

  .content-aside {
    position: relative;
    top: auto;
  }

  .peril-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    opacity: 0.62;
  }

  .providers-grid {
    gap: var(--space-6);
  }

  .reports-layout {
    gap: var(--space-6);
  }

  .provider-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-list article:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .shell {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    min-height: auto;
    padding: var(--space-3) 0;
  }

  .header-actions,
  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-content {
    padding: var(--space-8) 0;
  }

  .hero-lede {
    font-size: 18px;
  }

  .providers-copy,
  .use-case-grid > div:first-child {
    justify-items: start;
    justify-self: start;
    margin-left: 0;
    text-align: left;
  }

  .peril-grid,
  .use-case-list,
  .pricing-grid,
  .metric-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .section.compact {
    padding: var(--space-7) 0;
  }

  .content-hero-inner {
    padding: var(--space-8) 0 var(--space-7);
  }

  .content-section {
    padding: var(--space-7) 0;
  }

  .api-docs-hero-inner {
    padding: var(--space-7) 0;
  }

  .ai-panel,
  .endpoint-reference,
  .api-card {
    padding: var(--space-4);
  }

  .docs-reference .docs-table table {
    min-width: 640px;
  }

  .provider-board {
    grid-template-columns: 1fr;
    padding: var(--space-4);
  }

  .report-workflow-grid {
    padding: var(--space-4);
  }

  .use-case-list article {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .card,
  .pricing-card,
  .peril-card,
  .content-card,
  .content-aside,
  .policy-copy section,
  .value-grid article {
    padding: var(--space-4);
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
