@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #080a0b;
  --panel: #0e1113;
  --panel-2: #111518;
  --line: #293035;
  --text: #ecf0ed;
  --muted: #9ca7ac;
  --green: #a6df90;
  --cyan: #80cce0;
  --violet: #c0a5e5;
  --amber: #dfbf7a;
  --font: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 36px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #385d49;
  color: #fff;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: var(--green);
}
button,
input,
select {
  font: inherit;
}
button,
a,
select,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
select,
summary {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
button {
  color: inherit;
}
p {
  margin: 0 0 18px;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 0 0 20px;
}
h1 {
  font-size: clamp(36px, 4.7vw, 66px);
}
h2 {
  font-size: clamp(26px, 3vw, 39px);
}
h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
strong {
  font-weight: 600;
}
.shell {
  max-width: 1440px;
  padding: 0 64px;
  margin: auto;
}
.muted,
.small {
  color: var(--muted);
}
.small {
  font-size: 12px;
  line-height: 1.8;
}
.green {
  color: var(--green) !important;
}
.cyan {
  color: var(--cyan) !important;
}
.violet {
  color: var(--violet) !important;
}
.amber {
  color: var(--amber) !important;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 20px;
}
.text-link {
  font-size: 13px;
  text-decoration: none;
}
.text-link span {
  margin-left: 10px;
}
.skip {
  position: absolute;
  left: 24px;
  top: -100px;
  padding: 10px;
  background: var(--text);
  color: var(--bg);
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.09em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  font-size: 20px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: -0.08em;
  border: 1px solid #3a4d3c;
  line-height: 1;
  width: 35px;
  height: 32px;
  display: grid;
  place-items: center;
  padding-bottom: 3px;
}
.brand-tag {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-weight: 400;
  margin-left: 2px;
}
.site-header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
.site-header nav a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: var(--text);
}
.button {
  min-height: 47px;
  padding: 11px 19px;
  background: var(--panel);
  border: 1px solid #485158;
  display: inline-flex;
  gap: 23px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.button:hover {
  background: #1b2323;
  border-color: var(--green);
  color: var(--text);
}
.button.primary {
  color: #0c180c;
  background: var(--green);
  border-color: var(--green);
}
.button.primary:hover {
  background: #b7eba3;
  border-color: #b7eba3;
}
.button span {
  font-size: 18px;
  line-height: 1;
}
.small-button {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 11px;
}
.hero {
  padding: 89px 0 70px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 70px;
  align-items: center;
}
.hero h1 span {
  color: var(--muted);
}
.status-light {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  margin-right: 9px;
  vertical-align: 1px;
}
.hero-description {
  font-size: 15px;
  color: var(--muted);
  max-width: 590px;
  line-height: 1.8;
  margin: 25px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 30px 0 15px;
}
.hero .small {
  max-width: 590px;
  font-size: 10px;
}
.hero-note {
  border-left: 1px solid var(--line);
  padding: 15px 0 15px 25px;
}
.hero-note p {
  font-size: 12px;
  margin: 14px 0;
}
.hero-note p span {
  margin-right: 9px;
}
.hero-note .eyebrow {
  font-size: 9px;
  letter-spacing: 0.06em;
}
.hero-note .small {
  font-size: 10px;
}
.note-rule {
  width: 32px;
  border-top: 1px solid #4a5358;
  margin: 25px 0;
}
.terminal {
  border: 1px solid #364044;
  background: var(--panel);
  box-shadow: 0 16px 70px #0005;
}
.terminal-bar {
  background: #131719;
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.tiny-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #66737b;
  margin-right: 8px;
  vertical-align: 1px;
}
.sample-badge {
  font-size: 8px;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.terminal-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px 26px 12px;
}
.terminal-heading .eyebrow {
  margin-bottom: 9px;
}
.terminal-heading h2 {
  font-size: 21px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.metric-control {
  font-size: 9px;
  color: var(--muted);
  display: grid;
  gap: 5px;
}
.metric-control select {
  border: 1px solid #42505a;
  background: var(--bg);
  color: var(--text);
  padding: 8px 26px 8px 10px;
  max-width: 100%;
  font-size: 11px;
  border-radius: 0;
}
.terminal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
}
.chart-panel {
  min-width: 0;
  padding: 14px 24px 12px;
}
.chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 8px;
}
.chart-meta span:last-child {
  font-size: 7px;
}
.chart-description {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  max-width: 78ch;
  margin: 12px 0 0;
}
.chart-panel svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 150px;
}
.chart-panel svg text {
  fill: #99a5aa;
  font-family: var(--font);
  font-size: 10px;
}
.chart-grid {
  stroke: #293137;
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.chart-legend {
  padding: 0;
  display: flex;
  gap: 23px;
  border: 0;
  margin: 0 0 0 38px;
  flex-wrap: wrap;
}
.company {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  cursor: pointer;
}
.company input {
  margin: 0;
  width: 12px;
  height: 12px;
  accent-color: var(--green);
}
.company-0 {
  color: var(--green);
}
.company-1 {
  color: var(--cyan);
}
.company-1 input {
  accent-color: var(--cyan);
}
.company-2 {
  color: var(--violet);
}
.company-2 input {
  accent-color: var(--violet);
}
.chart-status {
  font-size: 9px;
  margin: 9px 0 0 38px;
  min-height: 16px;
}
.evidence-panel {
  border-left: 1px solid var(--line);
  margin: 10px 0 0;
  padding: 0 24px 16px;
}
.evidence-panel > .eyebrow {
  font-size: 8px;
}
.evidence-panel article {
  border-top: 1px solid var(--line);
  padding: 16px 0 7px;
}
.event-time {
  font-size: 8px;
}
.evidence-panel h3 {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 6px 0 8px;
}
.evidence-panel .summary-unit {
  color: var(--muted);
  font-size: 10px;
  font-weight: normal;
}
.evidence-panel p {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 9px;
}
.evidence-tag {
  font-size: 7px;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.terminal-foot {
  padding: 12px 22px;
  background: #101416;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 8px;
}
.sample-table {
  border-top: 1px solid var(--line);
  padding: 10px 22px;
}
.sample-table summary {
  font-size: 9px;
  color: var(--muted);
}
#sample-table {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  margin-top: 10px;
}
caption {
  font-size: 10px;
  color: var(--muted);
  text-align: left;
  padding: 10px 0;
}
td,
th {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 7px 12px;
  white-space: nowrap;
}
th {
  font-weight: 400;
  color: var(--muted);
}
.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 75px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p:last-child {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
  align-self: end;
  margin: 0;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workflow-grid article {
  padding: 30px 28px 25px 0;
}
.workflow-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.step {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.workflow-grid h3 {
  font-size: 18px;
  line-height: 1.4;
  max-width: 260px;
}
.workflow-grid p,
.source-grid p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.source-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #111718, #0c1011 70%);
}
.source-grid .eyebrow {
  font-size: 9px;
  margin-bottom: 20px;
}
.source-grid h3 {
  font-size: 17px;
}
.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 23px;
}
.source-tags span {
  border: 1px solid #303a40;
  color: #a8b4ba;
  font-size: 9px;
  padding: 3px 7px;
}
.source-disclosure {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  margin: 0;
}
.source-disclosure strong {
  color: var(--text);
  font-weight: 400;
}
.method-panel {
  margin-top: 70px;
  padding: 31px 36px;
  background: #12130f;
  border-left: 2px solid var(--amber);
}
.method-panel h2 {
  font-size: 25px;
  margin-bottom: 18px;
}
.method-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  max-width: 890px;
}
.method-panel .eyebrow {
  display: block;
}
.method-panel .text-link {
  font-size: 11px;
}
.billing-toggle {
  display: flex;
  gap: 0;
  justify-content: flex-end;
  margin: 10px 0 20px;
}
.billing-toggle button {
  background: #111618;
  color: var(--muted);
  border: 1px solid #354148;
  font-size: 11px;
  padding: 10px 15px;
}
.billing-toggle button + button {
  border-left: 0;
}
.billing-toggle button[aria-pressed='true'] {
  background: #253127;
  color: var(--green);
}
.billing-toggle span {
  font-size: 9px;
  margin-left: 12px;
  color: var(--green);
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 30px;
}
.price-card.growth {
  border-color: #4d684c;
  background: linear-gradient(145deg, #121b14, #0d1111 65%);
}
.price-card .eyebrow {
  font-size: 9px;
}
.price-card.growth .eyebrow {
  color: var(--green);
}
.price-card h3 {
  font-size: 25px;
  margin-bottom: 24px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  margin: 0 0 13px;
}
.price span:first-child {
  font-size: 47px;
  letter-spacing: -0.06em;
}
.price span:last-child {
  font-size: 13px;
  color: var(--muted);
}
.price-card > .muted {
  font-size: 10px;
}
.plan-list {
  padding: 20px 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.plan-list li {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.plan-list li:last-child {
  margin: 0;
}
.plan-list li::before {
  content: '+';
  color: var(--green);
  margin-right: 12px;
}
.plan-list strong {
  font-weight: 400;
  color: var(--text);
}
.price-card > .button {
  width: 100%;
  justify-content: space-between;
}
.annual-fallback {
  font-size: 11px;
  color: var(--muted);
  margin: 14px 0 0;
}
.enhanced .annual-fallback {
  display: none;
}
.pricing-note {
  margin: 20px 0 12px;
  font-size: 10px;
}
.closing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 77px 0;
}
.closing h2 {
  font-size: 39px;
}
.closing p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.site-footer .brand {
  font-size: 22px;
}
.site-footer .brand-mark {
  width: 28px;
  height: 26px;
  font-size: 16px;
}
.site-footer p {
  font-size: 10px;
  color: var(--muted);
  margin: 13px 0 0;
}
.footer-links {
  display: flex;
  gap: 10px 28px;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #1d2428;
  padding-top: 20px;
  color: #99a6ae;
  font-size: 8px;
  flex-wrap: wrap;
}
.footer-bottom a {
  text-decoration: none;
}
.page-heading {
  padding: 80px 0 45px;
  max-width: 960px;
}
.page-heading h1 {
  font-size: clamp(34px, 4.5vw, 58px);
}
.page-heading > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 660px;
}
.page-heading .button {
  margin-top: 15px;
}
.prose {
  max-width: 810px;
  padding: 5px 0 80px;
  font-size: 13px;
  color: #b7c0c4;
}
.prose.wide {
  max-width: 930px;
  padding-top: 50px;
}
.prose h2 {
  font-size: 22px;
  color: var(--text);
  margin: 35px 0 17px;
}
.prose h2:first-child {
  margin-top: 10px;
}
.prose p {
  margin: 0 0 18px;
  line-height: 1.9;
}
.prose a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}
.draft-notice {
  background: #272014;
  border: 1px solid #79643a;
  color: var(--amber);
  font-size: 11px;
  padding: 16px 20px;
  margin-top: 30px;
  max-width: 930px;
}
.draft-notice strong {
  display: block;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.support-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 90px;
  padding: 10px 0 90px;
}
.support-layout aside {
  color: var(--muted);
  font-size: 12px;
  padding-top: 14px;
}
.support-layout aside .eyebrow {
  font-size: 9px;
  color: var(--cyan);
}
.faq h2 {
  font-size: 24px;
  margin-bottom: 28px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  font-size: 13px;
  line-height: 1.6;
}
.faq details p {
  color: var(--muted);
  font-size: 12px;
  padding: 16px 0 0;
  margin: 0;
}
@media (min-width: 1600px) {
  .shell {
    max-width: 1510px;
  }
  .hero {
    padding-top: 105px;
    padding-bottom: 86px;
  }
  .hero h1 {
    font-size: 70px;
  }
}
@media (max-width: 1100px) {
  .shell {
    padding: 0 35px;
  }
  .site-header {
    gap: 25px;
  }
  .brand-tag {
    display: none;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero {
    gap: 35px;
    grid-template-columns: 1fr 230px;
    padding: 65px 0 55px;
  }
  .hero-note {
    padding-left: 20px;
  }
  .hero-note p {
    font-size: 10px;
  }
  .terminal-body {
    grid-template-columns: minmax(0, 1fr) 235px;
  }
  .evidence-panel {
    padding-left: 20px;
    padding-right: 20px;
  }
  .chart-meta span:last-child {
    display: none;
  }
  .section {
    padding: 65px 0;
  }
  .section-heading {
    column-gap: 40px;
  }
  .source-grid article {
    padding: 20px;
  }
  .support-layout {
    gap: 40px;
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 780px) {
  .shell {
    padding: 0 24px;
  }
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
    min-height: 105px;
  }
  .brand {
    font-size: 24px;
  }
  .site-header > .button {
    margin-left: auto;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    margin: 3px 0 0;
    gap: 26px;
  }
  .site-header nav a {
    font-size: 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 53px 0 44px;
    gap: 25px;
  }
  .hero h1 {
    font-size: clamp(37px, 7vw, 55px);
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-note {
    display: none;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero .small {
    font-size: 9px;
  }
  .terminal-heading {
    padding: 22px 18px 10px;
    flex-wrap: wrap;
  }
  .terminal-heading h2 {
    font-size: 18px;
  }
  .terminal-heading .eyebrow {
    font-size: 8px;
  }
  .metric-control {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
  }
  .terminal-body {
    grid-template-columns: 1fr;
  }
  .chart-panel {
    padding: 10px 8px 16px;
  }
  .chart-meta {
    padding: 0 10px;
  }
  .chart-description {
    padding: 0 10px;
  }
  .evidence-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px;
  }
  #sample-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
  }
  .evidence-panel > .eyebrow {
    margin-bottom: 12px;
  }
  .evidence-panel article {
    padding-top: 10px;
  }
  .terminal-bar {
    padding: 10px 14px;
    font-size: 7px;
  }
  .sample-badge {
    font-size: 7px;
  }
  .terminal-foot {
    padding: 12px 14px;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.7;
  }
  .chart-legend {
    gap: 19px;
    margin-left: 25px;
  }
  .chart-status {
    margin-left: 25px;
  }
  .section {
    padding: 55px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    margin: 0;
  }
  .section-heading > p:last-child {
    max-width: 540px;
    font-size: 12px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid article {
    padding: 25px 0;
  }
  .workflow-grid article + article {
    padding: 25px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .workflow-grid h3 {
    max-width: none;
  }
  .step {
    margin-bottom: 14px;
  }
  .source-grid {
    grid-template-columns: 1fr;
  }
  .source-tags {
    margin-top: 18px;
  }
  .source-grid article {
    padding: 23px;
  }
  .method-panel {
    margin-top: 45px;
    padding: 26px 24px;
  }
  .method-panel h2 {
    font-size: 23px;
  }
  .method-panel .eyebrow {
    font-size: 8px;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .billing-toggle {
    justify-content: flex-start;
  }
  .price-card {
    padding: 26px;
  }
  .closing {
    padding: 53px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .closing h2 {
    font-size: 32px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 14px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
  .page-heading {
    padding: 52px 0 30px;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 12px;
  }
  .page-heading .button {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .support-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .support-layout aside {
    max-width: 460px;
  }
  .prose {
    font-size: 12px;
  }
  .prose h2 {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
