@font-face {
  font-family: Barlow;
  src: url("/fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("/fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("/fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Mono;
  src: url("/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-display: swap;
}
:root {
  --paper: #f5f3ec;
  --ink: #20211e;
  --orange: #ed4b16;
  --rule: #cfcec5;
  --muted: #5c5d56;
  --white: #fffef9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Plex, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
.button {
  cursor: pointer;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
}
button:hover,
.button:hover {
  background: #373931;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button.secondary,
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
:focus-visible {
  outline: 3px solid #b5360d;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
h1,
h2 {
  font-family: Barlow, "Arial Narrow", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(76px, 8.4vw, 122px);
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(48px, 5.2vw, 72px);
  margin-bottom: 28px;
}
h3 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
}
p {
  margin-bottom: 20px;
}
small {
  font-size: 12px;
  line-height: 1.55;
}
.wrap {
  max-width: 1320px;
  width: calc(100% - 112px);
  margin: auto;
}
.nav {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}
.wordmark {
  font-weight: 500;
  letter-spacing: -2px;
  font-size: 35px;
  text-decoration: none;
  line-height: 1;
}
.wordmark span {
  color: var(--orange);
  padding-left: 3px;
  display: inline-block;
  font-weight: 400;
}
.nav nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
}
.nav nav a {
  text-decoration: none;
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.nav-cta span {
  margin-left: 30px;
}
.eyebrow,
.mono,
.index {
  font-family: Mono, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.eyebrow {
  text-transform: uppercase;
  line-height: 1.65;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 9px;
}
.hero {
  padding-top: 62px;
  padding-bottom: 74px;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 65px;
}
.hero-copy > .eyebrow {
  margin-bottom: 38px;
}
.hero-description {
  font-size: 22px;
  max-width: 390px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.intro {
  max-width: 400px;
  color: var(--muted);
  margin-bottom: 32px;
}
.orange {
  color: var(--orange);
}
.runner-word {
  position: relative;
}
.runner-word svg {
  position: absolute;
  width: 105%;
  left: -2%;
  bottom: 5%;
  height: 25%;
  overflow: visible;
  stroke: var(--orange);
  stroke-width: 4;
  fill: none;
}
.text-link {
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 9px;
  display: inline-flex;
  gap: 45px;
}
.hero-side {
  padding-top: 6px;
}
.signal {
  position: relative;
  border-top: 2px solid var(--ink);
  padding: 14px 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.signal > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.signal-number {
  font: 600 104px/0.95 Barlow;
  letter-spacing: -0.04em;
}
.signal-number > span {
  font-size: 55px;
  margin-left: 4px;
}
.signal > p {
  align-self: center;
  font-size: 15px;
  margin: 0;
}
.signal small {
  grid-column: 1/-1;
  color: var(--muted);
}
.signal-line {
  height: 10px;
  display: flex;
  gap: 5px;
  grid-column: 1/-1;
  margin: 6px 0;
}
.signal-line span {
  height: 100%;
  background: var(--orange);
  width: 67%;
}
.signal-line i {
  flex: 1;
  background: var(--rule);
}
.signup-card {
  background: #ebe9e0;
  border: 1px solid #dad8cc;
  padding: 26px 28px;
}
.signup-card h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.signup-card label:not(.consent) {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}
.signup-card input[type="email"],
select,
textarea {
  background: var(--white);
  width: 100%;
  border: 1px solid #9b9c90;
  border-radius: 0;
  padding: 12px;
  color: var(--ink);
}
.signup-card .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
  margin: 13px 0 16px;
}
.consent input {
  margin: 3px 0 0;
  accent-color: var(--ink);
  flex: none;
  width: 14px;
  height: 14px;
}
.signup-card button {
  width: 100%;
  margin-top: 10px;
}
.signup-card small {
  color: var(--muted);
  display: block;
  margin-top: 13px;
}
.signup-card p[role="status"] {
  font-size: 13px;
  margin: 10px 0;
}
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
#signup {
  scroll-margin-top: 24px;
}
#security:not(:empty) {
  margin: 10px 0;
}
#followup label {
  margin-top: 12px;
}
.ticker {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  font: 11px Mono;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ticker span:last-child {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  column-gap: 75px;
  align-items: end;
  margin-bottom: 45px;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 25px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
  max-width: 390px;
  margin-bottom: 3px;
}
.timeline {
  border: 1px solid var(--rule);
  padding: 24px 25px 17px;
  background: var(--white);
}
.timeline-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.timeline ol {
  display: flex;
  padding: 0;
  list-style: none;
  gap: 5px;
  margin: 27px 0 17px;
}
.timeline li {
  background: #e9e8df;
  flex: 1;
  font-size: 12px;
  padding: 18px 12px;
  min-width: 0;
}
.timeline li span {
  font: 10px Mono;
  display: block;
  margin-bottom: 21px;
}
.timeline .actual-check {
  background: var(--orange);
  color: #1c1c18;
  flex: 1.25;
  animation: pulse 3s ease 1;
}
.timeline > p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 46px;
}
.problem-grid article {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.index {
  color: #b5360d;
}
.problem-grid h3 {
  margin: 17px 0;
}
.problem-grid p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.configuration {
  background: #eae8df;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.explorer {
  background: #20221f;
  color: #eae9e1;
}
.explorer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4b4d45;
  padding: 0 23px 0 0;
}
.explorer-bar > .eyebrow {
  color: #c5c9bc;
}
.explorer [role="tablist"] {
  display: flex;
}
.explorer [role="tab"] {
  background: transparent;
  border: 0;
  border-right: 1px solid #4b4d45;
  color: #babeb3;
  font: 12px Mono;
  padding: 19px 24px;
  position: relative;
}
.explorer [role="tab"][aria-selected="true"] {
  color: #fff;
  background: #2d3029;
}
.explorer [role="tab"][aria-selected="true"]:after {
  content: "";
  height: 3px;
  background: var(--orange);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.explorer [role="tabpanel"] {
  padding: 29px 32px;
  position: relative;
  min-height: 330px;
}
.explorer pre {
  background: transparent !important;
  font: 13px/1.9 Mono;
  overflow: auto;
  margin: 0;
  tab-size: 2;
  padding-bottom: 35px;
}
.explorer .copy {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font: 11px Mono;
  background: transparent;
  border: 1px solid #666a5e;
  color: #eae9e1;
  padding: 9px 12px;
}
.explorer-notes {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 21px;
}
.explorer-notes p {
  font-size: 12px;
  max-width: 270px;
  margin-bottom: 0;
}
.explorer-notes span {
  font: 11px Mono;
  color: #9b2d0a;
  margin-right: 8px;
}
.explorer-notes code {
  font-size: 11px;
}
.integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.integration {
  padding: 35px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.integration h3 {
  font-size: 32px;
}
.integration p:not(.eyebrow) {
  font-size: 14px;
  max-width: 430px;
  color: var(--muted);
}
.integration.feature {
  background: #efe6d7;
}
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font: 10px Mono;
  padding: 20px 0;
  border-top: 1px solid #d6cbbb;
}
.flow b {
  color: #b5360d;
  font-size: 17px;
}
.integration small {
  color: var(--muted);
}
.ai-section {
  background: #242621;
  color: #eeeee5;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.ai-grid h2 {
  font-size: 65px;
}
.ai-grid p:not(.eyebrow) {
  color: #c7c9be;
  font-size: 15px;
  max-width: 480px;
}
.ai-grid .ai-note {
  font-size: 12px !important;
  border-left: 2px solid var(--orange);
  padding-left: 17px;
  margin-top: 30px;
  margin-bottom: 0;
}
.hook-list {
  padding-top: 38px;
}
.hook-list > div {
  border-top: 1px solid #585b50;
  padding: 21px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 18px;
}
.hook-list span {
  font: 11px Mono;
  color: #c7c9be;
}
.hook-list b {
  margin-left: auto;
  color: #ff774c;
  font-size: 24px;
  font-weight: 400;
}
.hook-list > .eyebrow {
  border-top: 1px solid #585b50;
  padding-top: 22px;
  color: #c7c9be;
}
.open-section > .eyebrow {
  margin-bottom: 32px;
}
.open-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.large-copy {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.open-grid p:not(.large-copy) {
  font-size: 14px;
  color: var(--muted);
}
.closing {
  background: var(--orange);
  padding: 63px 0 58px;
}
.closing .wrap {
  position: relative;
}
.closing h2 {
  font-size: clamp(64px, 7.8vw, 110px);
  margin-bottom: 33px;
}
.closing h2 span {
  position: absolute;
  right: 10%;
  top: 10px;
  font-family: Plex;
  font-size: 190px;
  font-weight: 400;
}
.closing .button {
  min-width: 250px;
}
.closing p:last-child {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 0 20px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 85px;
}
.faq h2 {
  font-size: 52px;
}
.faq details {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary:after {
  content: "+";
  color: #aa310e;
  font-size: 21px;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 14px;
  max-width: 530px;
  color: var(--muted);
  padding-top: 17px;
  margin-bottom: 0;
}
.footer {
  border-top: 1px solid var(--rule);
  padding-top: 30px;
  padding-bottom: 33px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 22px;
}
.footer > .wordmark {
  font-size: 29px;
}
.footer > p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.footer > div {
  display: flex;
  gap: 23px;
  font-size: 12px;
}
.footer > small {
  grid-column: 1/-1;
  color: var(--muted);
  margin-top: 15px;
  font: 10px Mono;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 10px;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip-link:focus {
  top: 20px;
}
[hidden] {
  display: none !important;
}
.privacy {
  max-width: 760px;
  padding: 65px 0;
}
.privacy h1,
.admin h1 {
  font-size: 72px;
}
.privacy h2 {
  font-family: Plex;
  font-size: 24px;
  line-height: 1.3;
  margin-top: 40px;
}
.admin {
  padding: 55px 0;
}
.admin h2 {
  font-size: 36px;
  margin-top: 45px;
}
.range {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: end;
}
.range label {
  display: grid;
  gap: 6px;
}
.range input {
  padding: 12px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.stats > div {
  border: 1px solid var(--rule);
  padding: 20px;
  font-size: 12px;
}
.stats strong {
  display: block;
  font: 600 55px Barlow;
  margin-bottom: 10px;
}
.table-scroll {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
th,
td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
  padding: 12px;
  max-width: 330px;
  overflow-wrap: anywhere;
}
td button {
  padding: 7px 12px;
}
table th {
  font-weight: 500;
  background: #e9e7dd;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 0 4px #ed4b1633;
  }
}
@media (min-width: 1450px) {
  .hero {
    gap: 100px;
  }
  .hero-side {
    max-width: 430px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 35px;
    grid-template-columns: 1.35fr 1fr;
  }
  h1 {
    font-size: 86px;
  }
  .hero-copy > .eyebrow {
    font-size: 10px;
  }
  .signal-number {
    font-size: 85px;
  }
  .signup-card {
    padding: 22px;
  }
  .section-heading {
    gap: 30px;
  }
  .timeline li {
    padding: 15px 8px;
    font-size: 10px;
  }
  .explorer-notes {
    flex-wrap: wrap;
  }
  .ai-grid,
  .open-grid {
    gap: 45px;
  }
  .ai-grid h2 {
    font-size: 55px;
  }
  .closing h2 span {
    right: 0;
    font-size: 150px;
  }
  .faq {
    gap: 40px;
  }
  .nav nav {
    gap: 22px;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 78px;
  }
  .wordmark {
    font-size: 29px;
  }
  .nav nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    font-size: 12px;
  }
  .nav-cta span {
    margin-left: 12px;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 28px;
    font-size: 10px;
  }
  h1 {
    font-size: clamp(73px, 15.7vw, 106px);
    margin-bottom: 25px;
  }
  .hero-description {
    font-size: 21px;
    max-width: 310px;
  }
  .intro {
    font-size: 15px;
    max-width: 340px;
    margin-bottom: 25px;
  }
  .hero-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .signal {
    grid-template-columns: 140px 1fr;
    padding-bottom: 14px;
  }
  .signal-number {
    font-size: 85px;
  }
  .signal small {
    font-size: 11px;
  }
  .signup-card {
    padding: 24px;
  }
  .ticker .wrap {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 9px;
    padding: 16px 0;
  }
  .ticker span:nth-child(3) {
    display: none;
  }
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 49px;
    margin-bottom: 22px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .timeline {
    padding: 18px 15px;
  }
  .timeline-top {
    flex-direction: column;
    gap: 3px;
  }
  .timeline-top .eyebrow {
    font-size: 9px;
  }
  .timeline ol {
    flex-direction: column;
    gap: 5px;
    margin-top: 18px;
  }
  .timeline li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 13px;
    font-size: 12px;
  }
  .timeline li span {
    margin: 0;
    width: 35px;
    flex: none;
    font-size: 10px;
  }
  .timeline .actual-check span {
    width: 125px;
    font-size: 9px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .problem-grid article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 12px;
  }
  .problem-grid h3 {
    margin: 0;
    font-size: 23px;
  }
  .problem-grid p {
    grid-column: 2;
    margin: 0;
  }
  .explorer-bar {
    padding: 0;
  }
  .explorer-bar > .eyebrow {
    display: none;
  }
  .explorer [role="tablist"] {
    width: 100%;
  }
  .explorer [role="tab"] {
    padding: 16px 12px;
    flex: 1;
    justify-content: center;
    font-size: 10px;
    white-space: nowrap;
  }
  .explorer [role="tabpanel"] {
    padding: 20px 16px;
    min-height: 340px;
  }
  .explorer pre {
    font-size: 11px;
    line-height: 1.9;
  }
  .explorer-notes {
    display: block;
  }
  .explorer-notes p {
    max-width: none;
    margin: 12px 0;
  }
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  .integration {
    padding: 25px;
  }
  .integration h3 {
    font-size: 29px;
  }
  .ai-grid,
  .open-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ai-grid h2 {
    font-size: 52px;
  }
  .hook-list {
    padding: 0;
  }
  .hook-list > div {
    font-size: 16px;
    gap: 14px;
  }
  .open-grid h2 {
    font-size: 54px;
    margin: 0;
  }
  .large-copy {
    font-size: 22px;
  }
  .closing {
    padding: 42px 0;
  }
  .closing h2 {
    font-size: 60px;
  }
  .closing h2 span {
    position: static;
    font-size: 48px;
    display: inline-block;
    margin-left: 12px;
  }
  .closing p:last-child {
    display: block;
    margin: 15px 0 0;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .faq h2 {
    font-size: 48px;
  }
  .faq summary {
    font-size: 15px;
  }
  .footer {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }
  .footer > p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer > div {
    gap: 16px;
  }
  .footer > small {
    margin: 0;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .privacy h1,
  .admin h1 {
    font-size: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.closing {
  color: #171813;
}

.toolkit-examples {
  padding-bottom: 0;
}
.toolkit-policy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #ebe9e0;
  border: 1px solid var(--rule);
  padding: 32px;
}
.toolkit-policy p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
}
.toolkit-policy p:last-child {
  margin-bottom: 0;
}
.toolkit-code {
  background: #20221f;
  padding: 25px;
  align-self: start;
}
.toolkit-code pre {
  background: transparent !important;
  margin: 0;
  overflow: auto;
  font: 12px/1.9 Mono;
}
.toolkit-grid {
  grid-template-columns: repeat(2, 1fr);
}
.toolkit-grid p + p {
  margin-top: 18px;
}
.toolkit-grid code {
  font-size: 12px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .toolkit-policy {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 25px;
  }
  .toolkit-code {
    padding: 16px;
    margin: 0 -8px;
  }
  .toolkit-code pre {
    font-size: 10px;
  }
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}

.diagnostics {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  width: 430px;
  max-width: calc(100% - 40px);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 0 6px 35px #20211e22;
  padding: 23px;
}
.diagnostics h2 {
  font-family: Plex;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.diagnostics p {
  font-size: 13px;
  margin-bottom: 15px;
}
.diagnostics > div {
  display: flex;
  gap: 10px;
}
.diagnostics button {
  font-size: 12px;
  flex: 1;
  justify-content: center;
  padding: 12px;
}
.diagnostics p:empty {
  display: none;
}
.preference-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  justify-self: start;
}
.preference-link:hover {
  background: none;
  color: var(--ink);
}

/* Static workflow guides: readable content, independently addressable sections. */
.feature-hero {
  padding-top: 62px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--rule);
}
.feature-hero h1 {
  font-size: clamp(54px, 6.5vw, 100px);
  max-width: 1050px;
  line-height: 0.98;
  margin: 26px 0;
}
.feature-intro {
  max-width: 820px;
  font-size: 20px;
  line-height: 1.65;
}
.feature-status {
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  max-width: 730px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}
.breadcrumbs,
.feature-jump {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 35px;
}
.feature-jump {
  margin: 32px 0 0;
}
.feature-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 780px);
  gap: 70px;
  padding-top: 64px;
}
.feature-toc nav {
  display: grid;
  gap: 16px;
  font-size: 14px;
}
.feature-toc .eyebrow {
  margin-bottom: 22px;
}
.feature-body {
  min-width: 0;
}
.feature-body > section {
  margin-bottom: 64px;
  scroll-margin-top: 30px;
}
.feature-body h2 {
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.feature-body h3 {
  font-family: Plex, sans-serif;
  font-size: 21px;
  line-height: 1.4;
  margin: 8px 0 12px;
}
.feature-body p {
  line-height: 1.8;
}
.feature-step {
  padding: 26px 0;
  border-top: 1px solid var(--rule);
}
.feature-step .eyebrow {
  margin: 0;
  color: #a8320e;
}
.feature-step p:last-child {
  margin-bottom: 0;
}
.feature-code {
  background: var(--ink);
  color: var(--white);
  padding: 24px;
  min-width: 0;
}
.feature-code pre {
  overflow: auto;
  font-family: Mono, monospace;
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: 12px;
}
.feature-code .shiki {
  background: transparent !important;
}
.feature-copy {
  background: transparent;
  border: 1px solid #a6aea2;
  color: var(--white);
  font-size: 12px;
  padding: 10px 14px;
  margin-top: 18px;
}
.feature-copy-status {
  font-size: 12px;
  padding-left: 12px;
}
.feature-caption {
  font-size: 12px;
  color: var(--muted);
}
.feature-limit {
  padding: 30px;
  background: #ebe9e0;
  border-left: 3px solid var(--orange);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-cards article {
  border-top: 2px solid var(--ink);
  padding: 24px 0;
}
.feature-cards h3 {
  font-size: 34px;
  line-height: 1.1;
  margin: 18px 0;
}
.feature-cards h3 a {
  text-decoration: none;
}
.feature-cards h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
}
.feature-cards p:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.feature-cards .eyebrow {
  font-size: 10px;
}
.feature-cta {
  padding: 36px 0;
  border-top: 1px solid var(--ink);
}
.feature-cta h2 {
  font-size: 58px;
  line-height: 1;
  margin-bottom: 24px;
}
.feature-cta > p:last-child {
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
}
.feature-cta .button {
  display: inline-flex;
  background: var(--ink);
  color: var(--white);
  padding: 17px 24px;
  text-decoration: none;
}
.toolkit-feature-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  text-decoration: underline;
}
@media (max-width: 800px) {
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 35px;
  }
  .feature-toc nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-hero {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .feature-intro {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .feature-cards {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .feature-code {
    padding: 16px;
  }
  .feature-limit {
    padding: 20px;
  }
  .feature-body h2 {
    font-size: 40px;
  }
  .feature-body > section {
    margin-bottom: 44px;
  }
  .feature-hero h1 {
    font-size: 55px;
    overflow-wrap: break-word;
  }
}
