:root {
  color-scheme: light;
  --paper: #fafafa;
  --surface: #ffffff;
  --soft: #f1f1f1;
  --ink: #212121;
  --muted: #676767;
  --faint: #797979;
  --line: #dedede;
  --line-strong: #c7c7c7;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Instrument Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  transform: translateY(calc(-100% - 20px));
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
}

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

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-header .container {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.brand img,
.footer-business img {
  display: block;
  width: 110px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
}

.site-nav a,
.header-signin {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover,
.header-signin:hover,
.quiet-link:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-signin {
  gap: 8px;
  color: var(--ink);
}

.header-signin span {
  font-size: 15px;
}

.hero {
  padding-top: clamp(72px, 10vw, 136px);
  padding-bottom: 100px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero > .eyebrow {
  margin-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
}

.hero-copy {
  max-width: 590px;
}

.page-title,
.section-title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 560;
  letter-spacing: -0.075em;
}

.page-title {
  max-width: 700px;
  font-size: clamp(56px, 6.9vw, 92px);
  line-height: 0.98;
}

.lede {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 540;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button-link:hover {
  border-color: #444;
  background: #444;
}

.button-link-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-link-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
  color: var(--ink);
}

.quiet-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  transition: color 150ms ease;
}

.early-access-note {
  max-width: 420px;
  margin: 22px 0 0;
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-scene {
  min-width: 0;
  margin: 0;
}

.scene-heading,
.scene-toolbar,
.saved-change-heading,
.check-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.scene-heading {
  margin-bottom: 12px;
}

.scene-heading .eyebrow {
  font-size: 9px;
}

.scene-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scene-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 55px rgb(33 33 33 / 7%);
}

.scene-toolbar {
  min-height: 46px;
  justify-content: flex-start;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.window-mark,
.reply-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: white;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
}

.toolbar-state {
  margin-left: auto;
  color: var(--faint);
}

.thread-body {
  padding: 23px 24px 20px;
}

.thread-label {
  margin: 0 0 8px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.request-card {
  margin: 0 0 21px 0;
  padding: 11px 14px;
  border-left: 2px solid var(--line-strong);
  background: #f7f7f7;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.reply-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}

.reply-mark {
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.reply-copy {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.saved-change {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfbfb;
}

.saved-change-heading {
  min-height: 36px;
  justify-content: flex-start;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 550;
}

.file-path {
  overflow: hidden;
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-change pre {
  overflow: hidden;
  margin: 0;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.code-muted {
  color: #858585;
}

.code-added {
  color: #333;
  background: #efefef;
}

.check-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.check-list span {
  color: var(--muted);
  font-size: 10px;
}

.check-list b {
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
}

.scene-caption {
  margin-top: 10px;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.5;
}

.workflow-section {
  padding-top: 20px;
  padding-bottom: 112px;
  border-top: 1px solid var(--line-strong);
}

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

.section-heading > .eyebrow {
  margin-bottom: 17px;
}

.section-title {
  font-size: clamp(36px, 4vw, 53px);
  line-height: 1.05;
}

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

.workflow-step {
  position: relative;
  min-width: 0;
  padding: 22px 26px 0 0;
  border-top: 1px solid var(--line-strong);
}

.workflow-step + .workflow-step {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.step-index {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
}

.workflow-step h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.workflow-step p {
  max-width: 300px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plans-section {
  padding: 92px 0 100px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.plan-intro {
  margin-bottom: 37px;
}

.section-copy {
  max-width: 600px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
}

.plan-card {
  min-width: 0;
  padding: 23px 18px 24px 0;
}

.plan-card + .plan-card {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.plan-card h3 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.price {
  display: flex;
  min-height: 31px;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
}

.price strong {
  font-family: var(--mono);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 450;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.signup-notice {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.usage-note {
  max-width: 680px;
  margin: 9px 0 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.65;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 90px;
  padding-bottom: 94px;
}

.contact-section .section-title {
  font-size: clamp(34px, 4vw, 48px);
}

.contact-section .section-copy a {
  text-decoration-thickness: 1px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  min-height: 114px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.footer-business img {
  width: 82px;
}

.footer-business p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
  transition: color 150ms ease;
}

/* Shared document styles for the policy pages. */
.site-header .container {
  justify-content: space-between;
}

.page-title {
  max-width: 790px;
  margin: 0;
}

.lede {
  color: var(--muted);
}

.policy-section {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

main.container {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: 30px;
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 550;
  letter-spacing: -0.035em;
}

.policy-section p,
.policy-section li {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.policy-section ul {
  padding-left: 21px;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .product-scene {
    width: min(100%, 680px);
  }

  .price strong {
    font-size: clamp(19px, 2.8vw, 26px);
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 116px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .site-header .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 16px;
    padding-block: 10px;
  }

  .brand img {
    width: 96px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 18px;
    margin: 7px 0 0;
    border-top: 1px solid var(--line);
  }

  .site-nav a,
  .header-signin {
    font-size: 12px;
  }

  .header-signin {
    justify-self: end;
  }

  .hero {
    padding-top: 63px;
    padding-bottom: 74px;
  }

  .hero > .eyebrow {
    margin-bottom: 18px;
  }

  .page-title {
    font-size: clamp(46px, 13vw, 66px);
    line-height: 0.99;
  }

  .lede {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px 18px;
    margin-top: 24px;
  }

  .button-link {
    min-height: 46px;
    gap: 14px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .early-access-note {
    margin-top: 17px;
    font-size: 11px;
  }

  .scene-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .thread-body {
    padding: 17px 14px 15px;
  }

  .scene-toolbar {
    padding-inline: 10px;
    font-size: 9px;
  }

  .file-path {
    max-width: 58%;
  }

  .workflow-section {
    padding-bottom: 76px;
  }

  .section-title {
    font-size: clamp(34px, 9vw, 45px);
  }

  .workflow {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 34px;
  }

  .workflow-step,
  .workflow-step + .workflow-step {
    padding: 18px 0 22px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step-index {
    margin-bottom: 12px;
  }

  .plans-section {
    padding: 70px 0;
  }

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

  .plan-card {
    min-height: 111px;
    padding: 18px 10px 17px 0;
  }

  .plan-card + .plan-card {
    padding-left: 14px;
  }

  .plan-card:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .plan-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .plan-card h3 {
    margin-bottom: 13px;
  }

  .price {
    gap: 0;
  }

  .price strong {
    font-size: clamp(20px, 6.2vw, 25px);
  }

  .price span {
    width: 100%;
    margin-top: 2px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 67px;
    padding-bottom: 68px;
  }

  .contact-section .section-title {
    font-size: 37px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 22px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 2px 18px;
  }

  .policy-section {
    margin-top: 28px;
    padding-top: 19px;
  }
}

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