:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-soft: #f0f4f0;
  --ink: #17201c;
  --muted: #5c6761;
  --faint: #59645e;
  --line: #d9dfda;
  --line-strong: #bbc7bf;
  --green: #167458;
  --green-dark: #0f5944;
  --green-soft: #e4f1eb;
  --amber-soft: #fff7e6;
  --amber-line: #e9cc91;
  --code-bg: #17221d;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(25, 49, 39, 0.1);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
pre {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

p,
li,
td,
th {
  line-height: 1.65;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 750;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-bottom: 1px solid rgba(217, 223, 218, 0.9);
  background: rgba(247, 248, 245, 0.94);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  padding: 6px;
  border: 1px solid #b9d3c7;
  border-radius: 11px;
  background: var(--green-soft);
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.site-header nav a,
.site-footer nav a {
  border-radius: 8px;
  color: var(--muted);
  padding: 9px 11px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.site-footer nav a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.site-header nav .header-button {
  margin-left: 4px;
  background: var(--ink);
  color: #fff;
  padding-inline: 15px;
}

.site-header nav .header-button:hover,
.site-header nav .header-button[aria-current="page"] {
  background: var(--green-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  padding: 0 18px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.button:disabled,
.disabled-link {
  cursor: not-allowed;
  opacity: 0.62;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.eyebrow,
.docs-label,
.docs-kicker {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.section,
.compact-hero {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  border-top: 1px solid var(--line);
  padding-block: 84px;
}

.compact-hero {
  padding-block: 82px 58px;
}

.compact-hero h1 {
  max-width: 880px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head h1,
.section-head h2 {
  margin-top: 12px;
}

.section-head > p:not(.eyebrow):not(.pill) {
  margin-top: 18px;
  color: var(--muted);
}

.section-head.narrow {
  max-width: 600px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #bad2c6;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.feature-card,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.feature-grid article > span,
.feature-icon {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid h2,
.feature-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-grid p,
.faq-list p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list h3 {
  margin-bottom: 9px;
}

.light {
  border-radius: 24px;
  background: var(--surface-soft);
  padding-inline: clamp(24px, 4vw, 56px);
}

.plans > h2 {
  margin: 44px 0 24px;
  font-size: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr;
  align-items: start;
  gap: 24px 50px;
  border-top: 1px solid var(--line);
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
}

.site-footer nav {
  justify-content: flex-end;
}

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  color: var(--faint);
  font-size: 13px;
}

.simple-footer {
  margin-top: 0;
}

.compact-footer {
  margin-top: 72px;
}

/* Simple home page */

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 72px);
  margin-inline: auto;
  padding-block: 72px;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero h1 {
  max-width: 700px;
  margin-top: 18px;
}

.support-line {
  margin-top: 24px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 680;
}

.home-demo {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--shadow);
}

.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 780;
}

.demo-topline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.demo-topline i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27a377;
  box-shadow: 0 0 0 4px var(--green-soft);
}

.demo-topline small {
  color: var(--faint);
  font-weight: 650;
}

.demo-message {
  margin-top: 18px;
  border-radius: 13px;
  padding: 18px;
}

.demo-message small {
  display: block;
  margin-bottom: 9px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-message p {
  font-size: 16px;
  line-height: 1.7;
}

.original-message {
  border: 1px solid var(--line);
}

.original-message mark {
  border-radius: 4px;
  background: #fff0b8;
  color: inherit;
  padding-inline: 2px;
}

.protected-message {
  background: var(--code-bg);
  color: #edf7f1;
}

.protected-message small {
  color: #9eb8aa;
}

.protected-message code {
  color: #9de2c2;
  font-size: 0.9em;
}

.protects-locally {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.protects-locally span {
  height: 1px;
  background: var(--line);
}

.demo-note {
  margin-top: 16px;
  color: var(--faint);
  font-size: 13px;
}

.home-section {
  padding-block: 92px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.step-grid li > span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}

.step-grid h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.step-grid p {
  max-width: 310px;
  color: var(--muted);
}

.workflow-demo-link {
  margin-top: 38px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.privacy-copy h2 {
  margin-top: 14px;
}

.privacy-copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}

.privacy-copy .important-note {
  margin-block: 24px;
  border-left: 3px solid var(--green);
  padding-left: 18px;
}

.important-note strong {
  color: var(--ink);
}

.boundary-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.boundary-panel > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
  padding: 26px;
}

.boundary-panel > div + div {
  border-left: 1px solid var(--line);
  background: var(--surface-soft);
}

.boundary-panel strong {
  font-size: 14px;
  line-height: 1.45;
}

.boundary-panel small {
  margin-top: 8px;
  color: var(--faint);
  line-height: 1.5;
}

.boundary-label {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sent-label {
  color: var(--muted);
}

.simple-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.simple-cta h2 {
  max-width: 700px;
  margin-top: 12px;
}

.simple-cta div > p:last-child {
  margin-top: 14px;
  color: var(--muted);
}

/* Customer demos */

.demos-hero {
  padding-bottom: 72px;
}

.demos-hero h1 {
  margin-top: 14px;
}

.demos-library {
  padding-top: 72px;
}

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

.demo-item {
  border-bottom: 1px solid var(--line);
}

.demo-item > summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 72px 92px;
  align-items: center;
  gap: 18px;
  padding: 22px 8px;
  cursor: pointer;
  list-style: none;
}

.demo-item > summary::-webkit-details-marker {
  display: none;
}

.demo-item > summary:hover,
.demo-item[open] > summary {
  background: var(--surface-soft);
}

.demo-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #bad2c6;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}

.demo-summary-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.demo-summary-copy strong {
  font-size: 18px;
  line-height: 1.35;
}

.demo-summary-copy span,
.demo-duration {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.demo-duration {
  white-space: nowrap;
}

.demo-open-label {
  color: var(--green-dark);
  font-size: 0;
  font-weight: 760;
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.demo-open-label::before {
  content: "View demo";
  font-size: 14px;
}

.demo-item[open] .demo-open-label::before {
  content: "Close demo";
}

.demo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(28px, 5vw, 58px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 34px 24px 42px;
}

.demo-visual {
  align-self: start;
  min-width: 0;
  margin: 0;
}

.demo-visual img,
.demo-visual video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0b1c17;
}

.demo-visual figcaption {
  margin-top: 10px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.demo-instructions h3 {
  margin-bottom: 18px;
  font-size: 23px;
}

.demo-instructions > ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-instructions li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.demo-instructions li > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 820;
}

.demo-instructions strong {
  display: block;
  line-height: 1.4;
}

.demo-instructions p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.demo-instructions .demo-note {
  margin: 0 0 18px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  padding: 12px 14px;
  color: var(--ink);
  line-height: 1.55;
}

.demo-safety {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.demo-safety > div {
  max-width: 760px;
}

.demo-safety h2 {
  margin-top: 12px;
}

.demo-safety p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

/* Documentation */

.docs-page {
  background: var(--surface);
}

.docs-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 800px);
  justify-content: center;
  gap: 72px;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 56px 96px;
}

.docs-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
}

.docs-nav-title {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 820;
}

.docs-nav {
  display: grid;
  gap: 3px;
}

.docs-nav a {
  border-radius: 7px;
  color: var(--muted);
  padding: 7px 9px;
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.docs-nav a:hover {
  background: var(--surface-soft);
  color: var(--green-dark);
}

.docs-sidebar-note {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding: 18px 9px 0;
  color: var(--faint);
  font-size: 12px;
}

.docs-sidebar-note strong {
  color: var(--ink);
}

.docs-content {
  min-width: 0;
}

.docs-intro,
.docs-section {
  scroll-margin-top: 100px;
}

.docs-intro h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.04;
}

.docs-lede {
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.status-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  border: 1px solid #bad2c6;
  border-radius: 10px;
  background: var(--green-soft);
  padding: 14px 16px;
}

.status-note > span {
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-note p {
  color: #355246;
  font-size: 14px;
}

.docs-intro > h2 {
  margin: 52px 0 18px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.docs-section {
  border-top: 1px solid var(--line);
  padding-top: 58px;
  margin-top: 62px;
}

.docs-section > h2 {
  margin: 10px 0 18px;
  font-size: clamp(30px, 4vw, 40px);
}

.docs-section > h3 {
  margin: 34px 0 14px;
}

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

.docs-section > p + p {
  margin-top: 16px;
}

.table-wrap {
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.spec-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table thead th {
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table tbody th {
  width: 30%;
  color: var(--ink);
  font-weight: 760;
}

.spec-table td {
  color: var(--muted);
}

.metric-table td:nth-child(2) {
  color: var(--green-dark);
  white-space: nowrap;
}

.boundary-table td {
  width: 50%;
  line-height: 1.9;
}

.callout {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: var(--surface-soft);
  padding: 18px 20px;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

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

.warning-callout {
  border-color: var(--amber-line);
  border-left-color: #af7621;
  background: var(--amber-soft);
}

.docs-steps {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.docs-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.docs-steps li > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 820;
}

.docs-steps h3 {
  margin-bottom: 5px;
}

.docs-steps p {
  color: var(--muted);
  font-size: 14px;
}

.code-flow {
  max-width: 100%;
  margin-top: 22px;
  overflow-x: auto;
  border-radius: 12px;
  background: var(--code-bg);
  color: #cfe8db;
  padding: 22px;
  font-size: 13px;
  line-height: 1.8;
}

.docs-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.docs-content :not(pre) > code {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-soft);
  color: var(--green-dark);
  padding: 2px 5px;
  font-size: 0.88em;
}

.benchmark-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.benchmark-meta span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 9px 11px;
  font-size: 12px;
}

.benchmark-meta strong {
  margin-left: 4px;
  color: var(--ink);
}

.related-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 42px;
}

.trust-docs .related-docs {
  margin-top: 0;
}

.related-docs h3 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.related-docs a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
}

.related-docs a:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.related-docs span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.docs-footer {
  background: var(--bg);
}

/* Checkout and download pages */

.purchase-hero {
  max-width: 1180px;
}

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 24px;
  padding-top: 24px;
}

.price-card,
.checkout-card,
.download-grid article,
.install-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 18px 0 22px;
}

.price strong {
  font-size: clamp(44px, 6vw, 62px);
  letter-spacing: -0.055em;
}

.price span,
.fine-print,
.secure-note,
.checkout-card > p,
.download-grid p,
.install-note {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.fine-print,
.secure-note {
  margin-top: 22px;
  font-size: 13px;
}

.checkout-card {
  display: grid;
  gap: 16px;
}

.checkout-card h2 {
  font-size: 26px;
}

.platform-options {
  display: grid;
  gap: 9px;
  border: 0;
  padding: 0;
}

.platform-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px;
  cursor: pointer;
}

.platform-options label:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
}

.platform-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.platform-options span {
  display: grid;
}

.platform-options small,
.field-label span {
  color: var(--faint);
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-label input {
  margin-top: 2px;
}

.field-label {
  margin-bottom: -8px;
  font-weight: 720;
}

.checkout-card > input {
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface);
  padding: 0 13px;
}

.checkout-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  color: var(--green-dark);
  font-weight: 700;
}

.support-form {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.support-form h2 {
  font-size: 26px;
}

.support-form > p:not(.form-status) {
  color: var(--muted);
}

.support-form :is(input, select, textarea) {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface);
  padding: 12px 13px;
}

.support-form textarea {
  resize: vertical;
}

.support-form .button {
  width: fit-content;
}

/* Private owner and invitation pages */

.owner-page [hidden],
[data-redeem-next][hidden] {
  display: none !important;
}

.owner-shell {
  min-height: calc(100vh - 72px);
}

.owner-login {
  max-width: 820px;
}

.owner-dashboard {
  padding-top: 64px;
}

.owner-heading,
.owner-list-heading,
.owner-code-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.owner-heading > p {
  color: var(--muted);
  font-weight: 700;
}

.owner-code-form {
  max-width: 900px;
}

.owner-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.owner-field-grid .field-label {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.owner-new-code {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green-soft);
  padding: 18px;
}

.owner-new-code input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.owner-list-section {
  margin-top: 64px;
}

.owner-list-section h2 {
  font-size: 30px;
}

.owner-table {
  min-width: 760px;
}

.owner-empty {
  margin-top: 18px;
  color: var(--muted);
}

.compact-button {
  min-height: 38px;
  padding-inline: 13px;
  font-size: 13px;
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.download-content {
  margin-top: 36px;
  text-align: left;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.download-grid h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.download-grid .button {
  margin-top: 18px;
}

.account-download-step {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.account-step-action {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.account-step-label {
  color: var(--faint);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-platform-actions {
  display: grid;
  gap: 10px;
}

.account-download-grid .button {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.account-activation-callout {
  display: grid;
  gap: 4px;
  border: 1px solid #b8d9ce;
  border-radius: 10px;
  background: var(--green-soft);
  padding: 14px 16px;
  color: var(--green-dark);
}

.account-activation-callout span {
  color: var(--muted);
  font-size: 13px;
}

.account-billing-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
}

.account-billing-row .form-status {
  margin: 0;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}

.other-platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  color: var(--muted);
}

.other-platforms a,
.text-button {
  color: var(--green-dark);
  font-weight: 750;
}

.install-note {
  margin-top: 20px;
}

.text-button {
  margin-top: 20px;
  border: 0;
  background: none;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.team-callout .button {
  margin-top: 24px;
}

.site-page :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #0a6c50;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .home-hero,
  .privacy-section,
  .purchase-layout {
    grid-template-columns: 1fr;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    padding-block: 64px 80px;
  }

  .home-demo {
    max-width: 680px;
  }

  .privacy-section {
    gap: 40px;
  }

  .demo-detail {
    grid-template-columns: 1fr;
  }

  .demo-visual {
    width: min(100%, 760px);
    justify-self: center;
  }

  .docs-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .docs-sidebar {
    position: static;
    min-width: 0;
    max-width: 100%;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }

  .docs-nav {
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .docs-nav a {
    flex: 0 0 auto;
  }

  .docs-sidebar-note {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header > nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-header > nav[data-open] {
    display: grid;
  }

  .site-header nav a {
    width: 100%;
    padding: 11px 12px;
  }

  .site-header nav .header-button {
    margin: 4px 0 0;
  }

  .step-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-grid li > span {
    margin-bottom: 18px;
  }

  .step-grid p {
    max-width: 620px;
  }

  .demo-item > summary {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .demo-number {
    grid-row: 1 / span 2;
  }

  .demo-open-label {
    grid-column: 2;
    text-align: left;
  }

  .demo-safety {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .section,
  .compact-hero,
  .home-hero,
  .docs-shell {
    width: min(100% - 32px, 1180px);
  }

  .section,
  .home-section {
    padding-block: 68px;
  }

  .compact-hero {
    padding-block: 64px 40px;
  }

  .home-hero {
    gap: 44px;
    padding-block: 54px 64px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button {
    width: 100%;
  }

  .home-demo {
    padding: 14px;
  }

  .demos-library {
    padding-top: 56px;
  }

  .demo-item > summary {
    padding: 18px 2px;
  }

  .demo-summary-copy strong {
    font-size: 16px;
  }

  .demo-duration {
    grid-column: 2;
  }

  .demo-open-label {
    grid-column: 3;
    grid-row: 2;
  }

  .demo-detail {
    padding: 26px 10px 34px;
  }

  .boundary-panel,
  .feature-grid,
  .related-docs,
  .owner-field-grid {
    grid-template-columns: 1fr;
  }

  .account-billing-row {
    align-items: stretch;
    flex-direction: column;
  }

  .owner-heading,
  .owner-list-heading,
  .owner-code-copy {
    align-items: stretch;
    flex-direction: column;
  }

  .owner-code-copy .button {
    width: 100%;
  }

  .boundary-panel > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .simple-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .simple-cta .button {
    width: 100%;
  }

  .docs-shell {
    padding-block: 34px 72px;
  }

  .docs-intro h1 {
    font-size: 40px;
  }

  .status-note {
    grid-template-columns: 1fr;
  }

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

  .code-flow {
    font-size: 11px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .site-footer nav {
    gap: 2px;
  }

  .site-footer nav a {
    padding: 8px;
  }
}

@media (forced-colors: active) {
  .button,
  .header-button,
  .brand-mark,
  .nav-toggle,
  .home-demo,
  .callout,
  .demo-number,
  .demo-visual img,
  .demo-visual video {
    border: 2px solid ButtonText;
    forced-color-adjust: auto;
  }

  .site-page :is(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid Highlight;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
