:root {
  color-scheme: light;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --surface-alt: #edf2f7;
  --ink: #08182f;
  --ink-soft: #1d2e48;
  --quill: #476f9f;
  --quill-hover: #365d8e;
  --text: #142033;
  --muted: #5d6878;
  --line: #d7dee7;
  --focus: #315d91;
  --success: #216b4b;
  --error: #a33a35;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

@view-transition {
  navigation: auto;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  border-top: 4px solid var(--ink);
  background: var(--paper);
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.brand__logo {
  display: block;
  width: 64px;
  height: 64px;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__copy strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.brand__copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--quill);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
}

.site-nav a:is(:hover, [aria-current="page"]) {
  color: var(--ink);
}

.site-nav a:is(:hover, [aria-current="page"])::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.local-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.local-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgb(33 107 75 / 12%);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0 96px;
}

.intro {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--quill-hover);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.reveal-example {
  margin-top: 36px;
  padding-left: 20px;
  border-left: 2px solid var(--quill);
}

.reveal-example__sentence {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.8;
}

.redaction-reveal {
  position: relative;
  display: inline-block;
  min-block-size: 1.55rem;
  margin-inline: 0.08em;
  padding: 0 0.14em;
  appearance: none;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  cursor: pointer;
  touch-action: manipulation;
}

.redaction-reveal::after {
  position: absolute;
  inset: 0.16em 0 0.12em;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}

.redaction-reveal:is(:focus-visible, [aria-pressed="true"])::after {
  opacity: 0;
}

.redaction-reveal:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .redaction-reveal:hover::after {
    opacity: 0;
  }
}

.reveal-example__hint {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-proof {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.privacy-proof p {
  margin: 0;
}

.privacy-proof__title {
  color: var(--ink);
  font-weight: 700;
}

.privacy-proof p + p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.demo-panel {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--quill);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgb(8 24 47 / 10%);
}

.demo-panel__header {
  margin-bottom: 24px;
}

.demo-panel__header .eyebrow {
  margin-bottom: 9px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.demo-panel__header > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

textarea {
  display: block;
  width: 100%;
  min-height: 320px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #9aabbe;
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--text);
  line-height: 1.55;
}

textarea::placeholder {
  color: var(--muted);
}

textarea:focus {
  border-color: var(--quill-hover);
  outline: 3px solid rgb(49 93 145 / 25%);
  outline-offset: 2px;
}

.demo-panel__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.status {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.status::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.status[data-state="error"] {
  color: var(--error);
}

.status[data-state="error"]::before {
  background: var(--error);
}

.notices {
  flex: 0 0 auto;
  color: var(--quill-hover);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  text-underline-offset: 3px;
}

.notices:hover {
  color: var(--ink);
}

.notices:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

noscript {
  display: block;
  margin-top: 12px;
  color: var(--error);
  font-size: 13px;
}

/* Keep the embedded review controls within the Inkwell brand palette. */
.inkwell-embed-popout {
  border-color: var(--line) !important;
  color: var(--text) !important;
  box-shadow: 0 18px 48px -20px rgb(8 24 47 / 32%) !important;
}

.inkwell-embed-popout__button--primary,
.inkwell-embed-session__button {
  border-color: var(--ink) !important;
  background: var(--ink) !important;
  color: #ffffff !important;
}

.inkwell-embed-popout__button:focus-visible,
.inkwell-embed-popout__close:focus-visible,
.inkwell-embed-session__button:focus-visible {
  outline: 3px solid var(--focus) !important;
  outline-offset: 2px !important;
}

.inkwell-embed-popout input[type="checkbox"] {
  accent-color: var(--quill-hover);
}

.inkwell-embed-session {
  border-color: var(--line) !important;
  background: rgb(247 249 252 / 98%) !important;
  color: var(--ink-soft) !important;
}

.inner-main {
  padding: 72px 0 96px;
}

.inner-hero {
  max-width: 860px;
}

.inner-hero h1 {
  max-width: 800px;
}

.inner-hero .lead {
  max-width: 780px;
}

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

.integration-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 760px);
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.integration-step__number {
  padding-top: 4px;
  color: var(--quill);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.integration-step h2 {
  font-size: 29px;
}

.integration-step p {
  max-width: 710px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

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

p code,
li > code {
  padding: 0.16em 0.32em;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.88em;
}

.code-figure {
  max-width: 760px;
  margin: 20px 0 0;
}

.code-figure figcaption {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.code-block {
  max-width: 760px;
  margin: 0;
  overflow-x: auto;
  padding: 22px 24px;
  border-left: 4px solid var(--quill);
  border-radius: 6px;
  background: var(--ink);
  color: #f5f7fa;
  font-size: 13px;
  line-height: 1.72;
  tab-size: 2;
}

.callout-note {
  padding-left: 14px;
  border-left: 2px solid var(--quill);
  color: var(--muted) !important;
  font-size: 14px !important;
}

.privacy-band,
.requirements,
.origin-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  margin-top: 72px;
  padding: 38px 40px;
}

.privacy-band {
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
}

.privacy-band .eyebrow {
  color: #9db9db;
}

.privacy-band h2 {
  color: #ffffff;
  font-size: 31px;
}

.privacy-band__copy p {
  margin: 0;
  color: #e3eaf2;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-band__copy p + p {
  margin-top: 14px;
}

.requirements {
  padding-inline: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.requirements h2 {
  max-width: 440px;
  font-size: 31px;
}

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

.requirements__list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.requirements__list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--quill);
  border-radius: 50%;
  content: "";
}

.page-next {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  justify-content: space-between;
  margin-top: 48px;
}

.page-next a {
  color: var(--quill-hover);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.page-next a:hover {
  color: var(--ink);
}

.page-next a:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.pricing-hero {
  max-width: 900px;
}

.pricing-hero h1 {
  max-width: 900px;
}

.launch-note {
  display: inline-block;
  margin: 24px 0 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  gap: 32px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink-soft);
  border-radius: 8px;
  background: var(--surface);
}

.price-card--featured {
  border-top-color: var(--quill);
  box-shadow: 0 18px 40px rgb(8 24 47 / 8%);
}

.price-card__kicker {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card h2 {
  font-size: 25px;
}

.price-reveal {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: left;
}

.price-reveal::after {
  inset-block: 0.05em 0;
}

.price-reveal__amount,
.price-reveal__period {
  display: block;
}

.price-reveal__period {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  align-content: start;
  gap: 11px;
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.price-card__status,
.price-card__action {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.price-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.price-card__action p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  text-align: right;
}

.checkout-button,
.checkout-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.checkout-button:hover,
.checkout-submit:hover {
  border-color: var(--quill-hover);
  background: var(--quill-hover);
}

.checkout-button:focus-visible,
.checkout-submit:focus-visible,
.checkout-modal button:focus-visible,
.checkout-form input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.pricing-disclaimer {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.origin-flow {
  align-items: start;
  border: 1px solid var(--line);
  border-left: 4px solid var(--quill);
  border-radius: 6px;
  background: var(--surface-alt);
}

.origin-flow h2 {
  max-width: 440px;
  font-size: 31px;
}

.origin-flow ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.origin-flow .callout-note {
  grid-column: 2;
  margin: 0;
}

.checkout-dialog {
  width: min(720px, calc(100% - 32px));
  max-width: none;
  max-height: min(880px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ink-soft);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgb(8 24 47 / 30%);
}

.checkout-dialog::backdrop {
  background: rgb(8 24 47 / 62%);
  backdrop-filter: blur(3px);
}

.checkout-modal {
  max-height: min(880px, calc(100dvh - 32px));
  overflow-y: auto;
  border-top: 5px solid var(--quill);
}

.checkout-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-modal__identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.checkout-modal__identity img {
  display: block;
  border-radius: 8px;
}

.checkout-modal__identity .eyebrow {
  margin-bottom: 3px;
}

.checkout-modal__identity h2 {
  font-size: 24px;
}

.checkout-modal__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.checkout-modal__close:hover {
  border-color: var(--ink);
  background: var(--surface-alt);
}

.checkout-modal__intro {
  margin: 0;
  padding: 20px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-form {
  display: grid;
  gap: 20px;
  padding: 24px 28px 28px;
}

.checkout-plan-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 16px;
  border-left: 4px solid var(--quill);
  background: var(--surface-alt);
}

.checkout-plan-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-plan-summary strong {
  color: var(--ink);
  font-size: 17px;
}

.billing-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.billing-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.billing-choice label {
  position: relative;
  display: block;
  cursor: pointer;
}

.billing-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.billing-choice span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

.billing-choice small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.billing-choice input:checked + span {
  border-color: var(--quill);
  box-shadow: inset 0 0 0 1px var(--quill);
  color: var(--ink);
  background: rgb(71 111 159 / 7%);
}

.billing-choice input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.checkout-fields label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.checkout-fields__wide {
  grid-column: 1 / -1;
}

.checkout-fields label > small,
.checkout-fields label > span small {
  color: var(--muted);
  font-weight: 500;
}

.checkout-form input:is([type="email"], [type="text"], [type="url"]) {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #b6c0cd;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
}

.checkout-form input::placeholder {
  color: #758192;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--quill);
}

.checkout-developer-note {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 12px;
  line-height: 1.55;
}

.checkout-status {
  min-height: 20px;
  margin: -4px 0;
  color: var(--error);
  font-size: 13px;
  line-height: 1.4;
}

.checkout-submit {
  width: 100%;
  min-height: 50px;
  padding-inline: 18px;
  font-size: 14px;
}

.stripe-checkout-panel {
  padding: 18px 20px 28px;
}

.checkout-back {
  margin: 0 0 14px 8px;
  padding: 7px 0;
  border: 0;
  color: var(--quill-hover);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

#stripe-checkout {
  min-height: 420px;
}

.checkout-success {
  padding: 48px 32px 52px;
  text-align: center;
}

.checkout-success__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  border: 2px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 27px;
  font-weight: 800;
}

.checkout-success h3 {
  margin: 5px 0 10px;
  color: var(--ink);
  font-size: 27px;
}

.checkout-success p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-success .checkout-submit {
  width: min(100%, 260px);
}

.checkout-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.checkout-modal__footer span {
  color: var(--quill);
  font-size: 9px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding-top: 56px;
  }

  .intro,
  .lead {
    max-width: 680px;
  }

  .demo-panel {
    width: 100%;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .site-header__actions {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    justify-content: space-between;
  }

  .inner-main {
    padding-top: 56px;
  }

  .privacy-band,
  .requirements,
  .origin-flow {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .origin-flow .callout-note {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    padding: 20px 0;
  }

  .site-header__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    gap: 18px;
    justify-content: space-between;
  }

  .site-nav a {
    font-size: 13px;
  }

  .brand {
    gap: 11px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__copy strong {
    font-size: 21px;
  }

  .brand__copy span {
    font-size: 10px;
  }

  .local-note {
    max-width: none;
    padding-top: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .content-grid {
    gap: 36px;
    padding: 44px 0 64px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  .lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .reveal-example {
    margin-top: 28px;
    padding-left: 16px;
  }

  .privacy-proof {
    margin-top: 28px;
  }

  .demo-panel {
    padding: 24px;
    border-radius: 12px;
  }

  textarea {
    min-height: 250px;
  }

  .demo-panel__footer {
    display: grid;
    gap: 9px;
  }

  .notices {
    text-align: left;
  }

  .inkwell-embed-session {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .inkwell-embed-session__button {
    width: 100% !important;
  }

  .inner-main {
    padding: 44px 0 64px;
  }

  .integration-steps {
    margin-top: 44px;
  }

  .integration-step {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0;
  }

  .integration-step h2,
  .privacy-band h2,
  .requirements h2,
  .origin-flow h2 {
    font-size: 25px;
  }

  .code-block {
    margin-inline: -16px;
    padding: 18px 16px;
    border-left-width: 3px;
    border-radius: 0;
    font-size: 11px;
  }

  .privacy-band,
  .origin-flow {
    margin-top: 48px;
    padding: 28px 24px;
  }

  .requirements {
    margin-top: 48px;
    padding-block: 28px;
  }

  .price-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
  }

  .price-card__status {
    grid-column: auto;
  }

  .price-card__action {
    grid-column: auto;
  }

  .page-next {
    display: grid;
  }

  .checkout-modal__header {
    padding: 18px 20px 14px;
  }

  .checkout-modal__intro {
    padding: 18px 20px 0;
  }

  .checkout-form {
    padding: 20px;
  }

  .checkout-fields,
  .billing-choice {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-fields__wide,
  .billing-choice legend {
    grid-column: auto;
  }

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

  .price-card__action p {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav a::after {
    transition:
      opacity 140ms ease,
      transform 180ms ease;
  }

  .redaction-reveal::after {
    transition: opacity 120ms ease;
  }

  ::view-transition-old(root) {
    animation: inkwell-page-out 130ms ease-in both;
  }

  ::view-transition-new(root) {
    animation: inkwell-page-in 420ms cubic-bezier(0.22, 0.72, 0.18, 1) both;
  }

  @keyframes inkwell-page-out {
    to {
      opacity: 0.45;
      filter: saturate(0.8);
    }
  }

  @keyframes inkwell-page-in {
    from {
      clip-path: ellipse(0 0 at 15% 4%);
      opacity: 0.78;
      filter: blur(2px) saturate(0.7);
    }

    to {
      clip-path: ellipse(155% 180% at 15% 4%);
      opacity: 1;
      filter: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a::after,
  .redaction-reveal::after,
  .checkout-dialog::backdrop,
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
    transition: none;
  }
}

@media (forced-colors: active) {
  .redaction-reveal::after {
    background: CanvasText;
  }

  .redaction-reveal:focus-visible,
  .brand:focus-visible,
  .site-nav a:focus-visible,
  .page-next a:focus-visible,
  .notices:focus-visible {
    outline-color: Highlight;
  }
}
