:root {
  --paper: #f6f5f1;
  --ink: #131412;
  --muted: #61625c;
  --line: #dcded5;
  --dark: #10110f;
  --lime: #b7f36b;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
button,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #5d761d;
  outline-offset: 5px;
}
.dark-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--lime);
}
main:focus {
  outline: none;
}
.container {
  width: min(100% - 112px, 1328px);
  margin-inline: auto;
}
.eyebrow,
.step,
.badge,
.window-bar,
figcaption {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
p {
  line-height: 1.7;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.065em;
}
h1 {
  font-size: clamp(56px, 5.8vw, 84px);
  line-height: 0.98;
}
h2 {
  font-size: clamp(36px, 4.15vw, 60px);
  line-height: 1.06;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.035em;
  font-weight: 550;
  line-height: 1.3;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  padding: 14px;
  background: var(--ink);
  color: white;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}
.logo-glyph {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  flex: none;
}
.logo-glyph::before,
.logo-glyph::after,
.logo-glyph i {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--paper);
}
.logo-glyph::before {
  transform: translate(-3px, -3px);
}
.logo-glyph::after {
  transform: translate(3px, 3px);
  opacity: 0.5;
}
.logo-glyph i {
  opacity: 0.7;
}
#main-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
}
#main-navigation a,
.login-link {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#main-navigation a:hover,
.login-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 46px;
  padding: 13px 17px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 550;
  text-decoration: none;
  transition: background 0.15s ease;
}
.button:hover {
  background: #34362e;
}
.header-demo {
  min-height: 42px;
  padding: 11px 13px;
  gap: 20px;
}
.menu-toggle {
  display: none;
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding-block: 100px 90px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, #13141206 1px, transparent 1px),
    linear-gradient(to bottom, #13141206 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 60%);
}
.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.tags span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 9px;
}
.tags span:first-child {
  border-color: var(--ink);
  color: var(--ink);
}
h1 span {
  color: #77796e;
}
.lead {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-top: 26px;
}
.hero-description {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin-top: 12px;
  line-height: 1.7;
}
.actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 550;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.text-link:hover {
  text-decoration-thickness: 2px;
}
.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
  font-size: 9px;
}
.hero-foot span::before {
  content: "+";
  margin-right: 8px;
  color: var(--ink);
}
.trace-console {
  border: 1px solid #33352d;
  background: var(--dark);
  border-radius: 9px;
  color: var(--paper);
  box-shadow: 0 28px 60px #15171024;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 47px;
  border-bottom: 1px solid #30322a;
  color: #a8ab9f;
  padding: 14px 19px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.window-dots {
  color: #55584d;
  white-space: nowrap;
  font-size: 10px;
}
.lime-mark {
  color: var(--lime);
}
.trace-body {
  padding: 27px;
}
.console-intro {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-bottom: 25px;
}
.trace-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.trace-chain li {
  border: 1px solid #34362e;
  background: #191b16;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 26px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 17px 13px;
}
.step {
  font-size: 10px;
  color: var(--muted);
}
.trace-chain .step {
  color: var(--lime);
}
.trace-chain strong {
  font-size: 13px;
  font-weight: 500;
}
.trace-chain small {
  display: block;
  margin-top: 5px;
  color: #adb0a4;
  font-size: 11px;
  line-height: 1.5;
}
.trace-chain li > span:last-child {
  color: #a9ad9d;
}
.trace-return {
  font-size: 11px;
  color: #b7bbad;
  border-left: 1px solid #55603e;
  margin: 20px 0 0 12px;
  padding-left: 18px;
  line-height: 1.6;
}
.trace-return span {
  color: var(--lime);
  margin-right: 5px;
}
figcaption {
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.trace-console figcaption {
  color: #a8ab9f;
  border-top: 1px solid #30322a;
  padding: 15px 20px;
}
.principles {
  border-block: 1px solid var(--line);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.principles p {
  font-size: 12px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}
.principles p:first-child {
  padding-left: 0;
}
.principles p:last-child {
  border-right: 0;
}
.principles span {
  font:
    10px ui-monospace,
    monospace;
  margin-right: 18px;
  color: var(--muted);
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading > .eyebrow {
  padding-top: 8px;
}
.section-description {
  max-width: 590px;
  margin-top: 22px;
  font-size: 15px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #faf9f6;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.badge {
  display: inline-block;
  width: fit-content;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 3px 6px;
  border: 1px solid #b7bbae;
  border-radius: 3px;
}
.product-card h3 {
  font-size: 30px;
}
.product-card p {
  font-size: 14px;
  color: var(--muted);
  margin-block: 15px 24px;
  max-width: 470px;
}
.product-section {
  border-block: 1px solid var(--line);
  background: #efeee8;
}
.operations-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-list article {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 16px;
  padding: 23px 0;
  border-top: 1px solid #ced1c5;
}
.feature-list article:last-child {
  border-bottom: 1px solid #ced1c5;
}
.feature-list .step {
  padding-top: 5px;
}
.feature-list h3 {
  font-size: 17px;
}
.feature-list p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 9px;
  max-width: 410px;
}
.product-map {
  border: 1px solid #c8cbbd;
  border-radius: 6px;
  background: #faf9f6;
}
.map-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.map-header > .eyebrow {
  margin-left: auto;
  font-size: 8px;
}
.map-content {
  padding: 25px;
}
.map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.map-content .eyebrow {
  margin-bottom: 13px;
  font-size: 9px;
}
.map-row > span {
  border: 1px solid #cdd0c2;
  border-radius: 4px;
  padding: 20px 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  background: #f2f3eb;
}
.map-row.single {
  grid-template-columns: 1fr;
}
.map-row.single span {
  background: #e8efdc;
  border-color: #bac5a8;
}
.map-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.map-connector {
  text-align: center;
  color: #6b745b;
  height: 34px;
  line-height: 34px;
}
.product-map figcaption {
  padding: 17px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.section-end {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #ced1c5;
  margin-top: 44px;
  padding-top: 25px;
}
.section-end p {
  font-size: 12px;
  color: var(--muted);
}
.dark-section {
  background: var(--dark);
  color: var(--paper);
}
.analyst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.dark-section .eyebrow {
  color: #b4b8a8;
  margin-bottom: 26px;
}
.analyst-grid > div > p:not(.eyebrow) {
  font-size: 14px;
  color: #b4b8a8;
  max-width: 460px;
  margin-top: 20px;
}
.analyst-grid .dark-lead {
  color: var(--paper) !important;
  font-size: 18px !important;
}
.analyst-grid .availability {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.availability .badge {
  border-color: #586b3d;
  color: var(--lime);
}
.analyst-grid > div > .small-copy {
  font-size: 11px;
  color: #a1a794;
}
.analyst-console {
  border: 1px solid #3a3d32;
  border-radius: 7px;
  background: #171914;
}
.question-list {
  list-style: none;
  padding: 8px 26px;
  margin: 0;
}
.question-list li {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #36392e;
  font-size: 15px;
  line-height: 1.55;
}
.question-list li:last-child {
  border-bottom: 0;
}
.question-list li span {
  color: var(--lime);
  font:
    24px/1.1 ui-monospace,
    monospace;
}
.console-note {
  padding: 21px 26px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  border-top: 1px solid #3a3d32;
  line-height: 1.7;
}
.console-note small {
  font-size: 10px;
  color: #a8ad9b;
}
.story-section > .eyebrow {
  margin-bottom: 30px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.story-grid p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.story-grid .story-lead {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.025em;
}
.pricing-section {
  border-block: 1px solid var(--line);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 48px 25px;
  border-block: 1px solid var(--line);
}
.pricing-grid article {
  padding: 29px;
  border-right: 1px solid var(--line);
}
.pricing-grid article:first-child {
  padding-left: 0;
}
.pricing-grid article:last-child {
  border-right: 0;
}
.pricing-grid h3 {
  margin-block: 23px 12px;
}
.pricing-grid p {
  font-size: 13px;
  color: var(--muted);
  max-width: 330px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 90px;
  padding-block: 115px;
}
.contact-section .eyebrow {
  margin-bottom: 26px;
}
.demo-agenda {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  max-width: 450px;
}
.demo-agenda li {
  font-size: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.demo-agenda span {
  color: var(--muted);
  margin-right: 16px;
  font:
    10px ui-monospace,
    monospace;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 30px;
  background: #faf9f6;
}
.contact-card h3 {
  margin-top: 22px;
  font-size: 25px;
}
.contact-card > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 13px;
}
.contact-card label {
  display: block;
  font:
    10px ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 24px 0 10px;
}
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #b7bbae;
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
  line-height: 1.65;
  resize: vertical;
  min-height: 170px;
}
.contact-card .small-copy {
  font-size: 10px;
}
.contact-card .button {
  width: 100%;
  margin-top: 18px;
}
#copy-status:empty {
  display: none;
}
.site-footer {
  background: var(--dark);
  color: var(--paper);
  padding-block: 52px 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 55px;
}
.site-footer .logo-glyph {
  border: 1px solid #55584d;
}
.footer-top p {
  color: #b4b8a8;
  font-size: 12px;
  margin-top: 20px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 18px 26px;
}
.footer-top nav a {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  text-decoration: none;
}
.footer-top nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #34372e;
  font-size: 10px;
  color: #b4b8a8;
}
.footer-bottom .eyebrow {
  color: #b4b8a8;
  font-size: 9px;
}
.legal-page {
  max-width: 820px;
  padding-block: 65px 100px;
  min-height: 70vh;
}
.legal-page > .eyebrow {
  margin-block: 42px 18px;
}
.legal-page h1 {
  font-size: clamp(46px, 7vw, 74px);
}
.legal-intro {
  font-size: 19px;
  margin-block: 25px 45px;
  color: var(--muted);
}
.legal-page section {
  padding-block: 27px;
  border-top: 1px solid var(--line);
}
.legal-page section h2 {
  font-size: 25px;
  letter-spacing: -0.03em;
}
.legal-page section p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 15px;
}
@media (min-width: 1101px) {
  #menu-toggle {
    display: none;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 12px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
  }
  #main-navigation {
    order: 4;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 20px;
  }
  .header-inner:has(.menu-toggle:not([hidden])) #main-navigation {
    display: none;
  }
  .header-inner:has(.menu-toggle:not([hidden])) #main-navigation.is-open {
    display: flex;
  }
  .hero {
    gap: 35px;
    padding-block: 70px;
  }
  h1 {
    font-size: 62px;
  }
  .trace-body {
    padding: 20px;
  }
  .operations-grid,
  .analyst-grid,
  .story-grid,
  .contact-section {
    gap: 40px;
  }
  .header-actions {
    gap: 18px;
  }
  .section {
    padding-block: 75px;
  }
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 620px;
  }
  h1 {
    font-size: 76px;
  }
  .trace-console {
    width: 100%;
    max-width: 620px;
    margin: 5px auto 0;
  }
  .hero-description {
    max-width: 540px;
  }
  .principles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .principles p:nth-child(2) {
    border-right: 0;
  }
  .principles p:nth-child(3) {
    padding-left: 0;
  }
  .principles p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .operations-grid,
  .analyst-grid,
  .story-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .product-map {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
  }
  .analyst-grid > div > p:not(.eyebrow) {
    max-width: 600px;
  }
  .story-grid {
    gap: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid article {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pricing-grid article:last-child {
    border-bottom: 0;
  }
  .pricing-grid h3 {
    margin-top: 12px;
  }
  .pricing-grid p {
    max-width: 580px;
  }
  .contact-card {
    max-width: 580px;
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 560px) {
  html {
    scroll-padding-top: 135px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 12px;
    min-height: 68px;
  }
  .wordmark {
    font-size: 16px;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  .header-demo {
    min-height: 38px;
  }
  #main-navigation {
    gap: 3px 24px;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }
  .hero {
    padding-block: 48px 50px;
    gap: 38px;
  }
  h1 {
    font-size: clamp(46px, 11.7vw, 64px);
  }
  h2 {
    font-size: clamp(34px, 9vw, 46px);
  }
  .tags {
    gap: 8px;
    margin-bottom: 25px;
  }
  .tags span {
    font-size: 8px;
  }
  .lead {
    font-size: 18px;
  }
  .hero-description {
    font-size: 14px;
  }
  .actions {
    gap: 16px;
  }
  .hero-foot {
    gap: 10px 20px;
    margin-top: 30px;
    font-size: 8px;
  }
  .trace-body {
    padding: 20px 16px;
  }
  .trace-chain li {
    padding: 15px 10px;
    gap: 8px;
    grid-template-columns: 22px 1fr 12px;
  }
  .trace-chain strong {
    font-size: 12px;
  }
  .trace-chain small {
    font-size: 10px;
  }
  .console-intro {
    font-size: 21px;
  }
  .window-bar {
    padding-inline: 14px;
    font-size: 8px;
  }
  .trace-console figcaption {
    font-size: 8px;
  }
  .principles p {
    padding: 17px 10px;
    font-size: 10px;
  }
  .principles span {
    font-size: 9px;
    margin-right: 8px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-description {
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card {
    padding: 24px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .feature-list h3 {
    font-size: 16px;
  }
  .map-content {
    padding: 20px 15px;
  }
  .map-header > .eyebrow {
    font-size: 7px;
  }
  .map-row > span {
    font-size: 11px;
  }
  .section-end {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
  }
  .analyst-grid {
    gap: 35px;
  }
  .question-list {
    padding-inline: 20px;
  }
  .question-list li {
    font-size: 14px;
  }
  .contact-card {
    padding: 23px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer-top nav {
    gap: 8px 22px;
  }
  .legal-page {
    padding-block: 35px 60px;
  }
  .legal-page h1 {
    font-size: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
