@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: JetBrains;
  src: url("/assets/fonts/jetbrains-mono-latin-400-normal.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: VT323;
  src: url("/assets/fonts/vt323-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: oklch(0.155 0.008 50);
  --surface: oklch(0.185 0.009 50);
  --raised: oklch(0.215 0.01 50);
  --line: oklch(0.285 0.012 50);
  --ink: oklch(0.93 0.006 60);
  --muted: oklch(0.69 0.014 55);
  --brand: oklch(0.72 0.15 41);
  --brand-hot: oklch(0.78 0.16 45);
  --brand-ink: oklch(0.16 0.03 41);
  --agent: oklch(0.75 0.13 305);
  --formula: oklch(0.79 0.11 195);
  --ok: oklch(0.76 0.16 150);
  --mono: JetBrains, ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.6 Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--brand-hot);
}
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
}
::selection {
  background: oklch(0.72 0.15 41/0.35);
}
.shell {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: VT323, var(--mono);
  font-size: 43px;
  line-height: 1;
  letter-spacing: 0.015em;
}
.wordmark span,
.mini-wordmark span {
  color: var(--brand);
}
.header nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  font-weight: 550;
}
.header nav > a:not(.nav-app) {
  color: var(--muted);
}
.header nav > a:hover {
  color: var(--ink);
}
.nav-app {
  padding: 10px 16px;
  border: 1px solid var(--line);
}
.nav-app span {
  margin-left: 16px;
  color: var(--brand);
}
.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  padding-block: 86px 76px;
  align-items: center;
}
.eyebrow {
  font: 10px/1.6 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 25px;
  color: var(--muted);
}
.signal {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
}
h1 {
  font-size: clamp(50px, 5.8vw, 81px);
  line-height: 1.035;
  letter-spacing: -0.067em;
  font-weight: 510;
  margin: 0 0 29px;
}
h1 > span {
  color: var(--brand);
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 29px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding: 13px 21px;
  font-size: 13px;
  font-weight: 640;
  line-height: 1.5;
  transition: background 120ms;
}
.button.primary {
  background: var(--brand);
  color: var(--brand-ink);
  border: 1px solid var(--brand);
}
.button.primary:hover {
  background: var(--brand-hot);
  border-color: var(--brand-hot);
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.text-link {
  font-size: 12px;
}
.text-link span {
  margin-left: 9px;
  color: var(--brand);
}
.microcopy {
  font: 10px/1.6 var(--mono);
  color: var(--muted);
  margin: 17px 0 0;
}
.research-note {
  border: 1px solid var(--line);
  background: var(--surface);
  max-width: 410px;
  justify-self: end;
  width: 100%;
  position: relative;
}
.research-note:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 185px;
  height: 176px;
  right: -34px;
  bottom: -34px;
  background-image: radial-gradient(var(--brand) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
  opacity: 0.26;
  mask-image: linear-gradient(130deg, transparent 10%, #000 90%);
}
.note-heading {
  padding: 16px 21px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.agent-mark {
  color: var(--agent);
  margin-right: 10px;
  font-size: 18px;
  vertical-align: middle;
}
.prompt-label {
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 29px 25px 16px;
}
.prompt {
  font: 12px/2.1 var(--mono);
  margin: 0 25px 23px;
  color: var(--ink);
}
.prompt > span {
  color: var(--brand);
}
.note-output {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 25px;
  padding: 21px 0 26px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.note-output > .muted {
  font: 9px var(--mono);
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.field-symbol {
  color: var(--agent);
  margin-right: 10px;
}
.note-foot {
  font: 9px/1.7 var(--mono);
  color: var(--muted);
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 12px 25px;
  margin: 0;
}
.muted {
  color: var(--muted);
}
.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 17px;
}
.section-label h2 {
  font-weight: 510;
  font-size: 15px;
  margin: 0;
}
.section-label > span {
  font: 8px/1.6 var(--mono);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.table-window {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 22px 44px #0002;
}
.table-top {
  height: 51px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 26px;
}
.mini-wordmark {
  font:
    25px VT323,
    var(--mono);
}
.table-tab {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--brand);
  font-size: 11px;
}
.table-count {
  font: 9px var(--mono);
  margin-left: auto;
  color: var(--muted);
}
.table-tools {
  height: 49px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  font-size: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.view-label {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--ink);
  margin-right: 22px;
}
.view-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
}
.export {
  margin-left: auto;
}
.table-scroll {
  overflow: auto;
  background: var(--bg);
}
table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 11px;
  white-space: nowrap;
}
th {
  font-weight: 450;
}
th,
td {
  height: 59px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
tr > :last-child {
  border-right: 0;
}
thead th {
  height: 42px;
  background: var(--surface);
  font-size: 10px;
  color: var(--muted);
}
thead .agent-column {
  color: var(--agent);
  border-top: 2px solid oklch(0.75 0.13 305/0.65);
  background: oklch(0.75 0.13 305/0.04);
}
.number {
  width: 46px;
  padding: 0 13px;
  font: 9px var(--mono);
  color: var(--muted);
  text-align: center;
}
.column-type {
  font-family: var(--mono);
  display: inline-block;
  width: 24px;
}
.company-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 10px var(--mono);
  width: 24px;
  height: 24px;
  background: var(--raised);
  margin-right: 11px;
  color: var(--muted);
}
.domain {
  font: 10px var(--mono);
  color: var(--muted);
}
.done-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--ok);
  margin-right: 10px;
  vertical-align: middle;
}
.fit {
  font: 9px var(--mono);
  padding: 5px 7px;
  border: 1px solid oklch(0.76 0.16 150/0.22);
  color: var(--ok);
  background: oklch(0.76 0.16 150/0.055);
}
.fit.neutral {
  color: var(--muted);
  border-color: var(--line);
  background: transparent;
}
.table-bottom {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  font: 9px/1.6 var(--mono);
  color: var(--muted);
}
.example-note {
  font: 9px/1.8 var(--mono);
  color: var(--muted);
  margin: 13px 0 0;
}
.workflow {
  padding-block: 112px 90px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}
.section-heading > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(31px, 3.3vw, 44px);
  font-weight: 480;
  letter-spacing: -0.047em;
  line-height: 1.14;
  margin: 0;
}
.section-heading > p:last-child {
  margin: 4px 0 0;
  max-width: 362px;
  font-size: 14px;
  color: var(--muted);
  align-self: end;
  padding-bottom: 2px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 49px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.steps li {
  padding: 31px 30px 31px 0;
}
.steps li + li {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.step-number {
  font: 9px/1.6 var(--mono);
  color: var(--brand);
  letter-spacing: 0.06em;
}
h3 {
  font-weight: 540;
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 17px 0 13px;
}
.steps p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  max-width: 330px;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 0 84px;
}
.detail-intro > .eyebrow {
  margin-bottom: 24px;
}
.detail-intro > p:last-child {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 330px;
  margin: 24px 0;
}
.detail-list > article {
  display: flex;
  gap: 21px;
  padding: 0 0 26px;
}
.detail-list > article + article {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.detail-icon {
  font: 22px/1.25 var(--mono);
  width: 25px;
  color: var(--brand);
  flex-shrink: 0;
}
.violet {
  color: var(--agent);
}
.cyan {
  color: var(--formula);
}
.detail-list h3 {
  margin: 0 0 9px;
  font-size: 14px;
}
.detail-list p {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 360px;
}
.closing {
  border-block: 1px solid var(--line);
  text-align: center;
  padding-block: 67px 70px;
  background-image: radial-gradient(
    oklch(0.72 0.15 41/0.11) 0.55px,
    transparent 0.65px
  );
  background-size: 9px 9px;
}
.closing > .eyebrow {
  margin-bottom: 21px;
}
.closing h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 490;
  margin-bottom: 29px;
  letter-spacing: -0.05em;
  line-height: 1.17;
}
.closing h2 > span {
  color: var(--brand);
}
.footer {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-block: 32px 36px;
}
.footer .wordmark {
  font-size: 32px;
}
.footer p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.footer nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 10px;
  color: var(--muted);
}
.skip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 18px;
  background: var(--brand);
  color: var(--brand-ink);
  transform: translateY(-200%);
}
.skip:focus {
  transform: none;
}
.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;
}
.legal-content {
  max-width: 760px;
  padding-block: 70px 80px;
  min-height: 65vh;
}
.legal-content h1 {
  font-size: clamp(40px, 5vw, 62px);
  margin-bottom: 36px;
}
.legal-content h2 {
  font-size: 23px;
  margin: 36px 0 15px;
  letter-spacing: -0.025em;
}
.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content address {
  font-style: normal;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
}
.legal-content ul {
  padding-left: 21px;
}
.legal-content .notice {
  padding: 18px 22px;
  border-left: 2px solid var(--brand);
  background: var(--surface);
}
@media (min-width: 1600px) {
  .hero {
    gap: 140px;
  }
}
@media (max-width: 1000px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 40px;
    padding-block: 64px;
  }
  .research-note {
    max-width: 365px;
  }
  .prompt {
    font-size: 10px;
  }
  .note-foot {
    font-size: 8px;
  }
  .hero-description {
    font-size: 14px;
  }
  .section-heading,
  .details {
    gap: 40px;
  }
  .steps li {
    padding-right: 22px;
  }
  .steps li + li {
    padding-left: 22px;
  }
  .section-label > span {
    font-size: 7px;
  }
  .workflow {
    padding-block: 85px 70px;
  }
}
@media (max-width: 720px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header {
    height: 82px;
  }
  .wordmark {
    font-size: 36px;
  }
  .header nav {
    gap: 17px;
    font-size: 11px;
  }
  .header nav > a:not(.nav-app) {
    display: none;
  }
  .nav-app {
    padding: 8px 11px;
  }
  .nav-app span {
    margin-left: 9px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 39px;
    padding-block: 48px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 21px;
  }
  h1 {
    font-size: clamp(49px, 10.6vw, 71px);
    letter-spacing: -0.065em;
    line-height: 1.03;
  }
  .hero-description {
    max-width: 440px;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 22px;
  }
  .button {
    padding: 12px 18px;
    font-size: 12px;
    gap: 25px;
  }
  .text-link {
    font-size: 11px;
  }
  .microcopy {
    font-size: 8px;
  }
  .research-note {
    justify-self: stretch;
    max-width: none;
  }
  .research-note:after {
    display: none;
  }
  .prompt {
    font-size: 12px;
    line-height: 1.9;
  }
  .note-output {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    font-size: 10px;
  }
  .note-output > .muted {
    grid-column: 1/-1;
    margin-bottom: 1px;
  }
  .note-foot {
    font-size: 9px;
  }
  .section-label {
    display: block;
  }
  .section-label h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .section-label > span {
    font-size: 7px;
  }
  .table-top {
    gap: 20px;
    padding-inline: 13px;
  }
  .table-tools {
    gap: 16px;
    padding-inline: 13px;
    font-size: 9px;
  }
  .view-label {
    margin-right: 0;
  }
  .table-bottom {
    padding: 12px 13px;
    font-size: 8px;
  }
  .table-bottom > span:last-child {
    display: none;
  }
  .example-note {
    font-size: 8px;
    line-height: 1.9;
  }
  .workflow {
    padding-block: 65px 58px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-heading > .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading > p:last-child {
    margin-top: 22px;
    font-size: 13px;
    max-width: 370px;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .steps li,
  .steps li + li {
    padding: 24px 0;
    border-left: 0;
  }
  .steps li + li {
    border-top: 1px solid var(--line);
  }
  .steps p {
    max-width: 100%;
    font-size: 13px;
  }
  .steps h3 {
    margin: 12px 0 10px;
  }
  .details {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
  }
  .detail-intro > .eyebrow {
    font-size: 8px;
  }
  .detail-intro > p:last-child {
    font-size: 13px;
    max-width: 370px;
  }
  .detail-list > article {
    gap: 17px;
  }
  .detail-list p {
    max-width: 100%;
    font-size: 13px;
  }
  .closing {
    padding-block: 44px 47px;
  }
  .closing h2 {
    font-size: clamp(28px, 6.7vw, 42px);
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 16px;
    padding-block: 25px;
  }
  .footer .wordmark {
    font-size: 32px;
  }
  .footer p {
    font-size: 9px;
  }
  .footer nav {
    margin-left: 0;
    width: 100%;
    font-size: 11px;
  }
  .legal-content {
    padding-block: 42px;
  }
  .legal-content h1 {
    font-size: 45px;
  }
  .legal-content h2 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
