@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYY.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/jetbrains-mono/jbm-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/jetbrains-mono/jbm-500-latin.woff2") format("woff2");
}

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

:root {
  color-scheme: light;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --ink: #14171c;
  --ink-soft: #343a42;
  --muted: #646c75;
  --line: #d7dce0;
  --blue: #1557e8;
  --blue-dark: #0d45bd;
  --blue-soft: #e7eeff;
  --orange: #e6502b;
  --green: #08755b;
  --dark: #171a1f;
  --dark-soft: #23272e;
  --blue-action: #1557e8;
  --blue-action-hover: #0d45bd;
  --on-accent: #ffffff;
  --header-line: rgba(20, 23, 28, 0.12);
  --header-bg: rgba(247, 248, 246, 0.96);
  --nav-button-bg: var(--ink);
  --nav-button-ink: #ffffff;
  --button-outline: #aeb4bb;
  --green-ring: rgba(8, 117, 91, 0.12);
  --inverse-ink: #ffffff;
  --inverse-label: #9ebaff;
  --inverse-line: #3c424b;
  --inverse-index: #858d98;
  --inverse-muted: #bfc5cc;
  --evidence-line: #b9c8eb;
  --evidence-muted: #4f5e7d;
  --light-button-bg: #ffffff;
  --light-button-hover: #eef2ff;
  --light-button-ink: var(--ink);
  --footer-ink: #d7dbe0;
  --footer-strong: #ffffff;
  --footer-muted: #929aa4;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "IBM Plex Sans", Arial, Helvetica, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #111318;
  --surface: #171a1f;
  --ink: #f2f4f7;
  --ink-soft: #bcc3cc;
  --muted: #89939f;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #7da7ff;
  --blue-dark: #96b8ff;
  --blue-soft: rgba(89, 137, 255, 0.16);
  --orange: #ff7657;
  --green: #42c991;
  --dark: #0e1014;
  --dark-soft: #171a1f;
  --blue-action: #365fd5;
  --blue-action-hover: #4672ed;
  --on-accent: #ffffff;
  --header-line: rgba(255, 255, 255, 0.1);
  --header-bg: rgba(17, 19, 24, 0.96);
  --nav-button-bg: #f2f4f7;
  --nav-button-ink: #111318;
  --button-outline: #56616d;
  --green-ring: rgba(111, 224, 161, 0.16);
  --inverse-ink: #edf1f5;
  --inverse-label: #91b1ff;
  --inverse-line: #303842;
  --inverse-index: #7c8793;
  --inverse-muted: #b2bbc5;
  --evidence-line: #314563;
  --evidence-muted: #aab7cc;
  --light-button-bg: #edf1f5;
  --light-button-hover: #ffffff;
  --light-button-ink: #111318;
  --footer-ink: #d7dbe0;
  --footer-strong: #ffffff;
  --footer-muted: #929aa4;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
}

::selection {
  color: var(--on-accent);
  background: var(--blue-action);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--header-line);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 13px;
}

.primary-nav,
.hero-actions,
.trust-list,
.footer-inner,
.site-footer nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 26px;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.theme-toggle {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

:root[data-theme="dark"] .theme-toggle-icon {
  box-shadow: inset -4px -3px 0 -2px currentColor;
  transform: rotate(-18deg);
}

:root[data-theme="light"] .theme-toggle-icon {
  width: 12px;
  height: 12px;
  border: 0;
  background: currentColor;
  box-shadow: 0 -6px 0 -5px currentColor, 0 6px 0 -5px currentColor,
    6px 0 0 -5px currentColor, -6px 0 0 -5px currentColor,
    4px 4px 0 -5px currentColor, -4px 4px 0 -5px currentColor,
    4px -4px 0 -5px currentColor, -4px -4px 0 -5px currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  color: var(--nav-button-ink);
  background: var(--nav-button-bg);
  font-size: 13px;
}

.button-small:hover {
  background: var(--blue-action);
}

.button-primary {
  color: var(--on-accent);
  background: var(--blue-action);
}

.button-primary:hover {
  background: var(--blue-action-hover);
}

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

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

.hero {
  padding: 88px 0 64px;
}

.hero-inner {
  position: relative;
}

.eyebrow,
.section-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-ring);
}

.hero h1 {
  max-width: 980px;
  margin: 24px 0 28px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lede {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.55;
}

.hero-lede code {
  color: var(--ink);
  font-weight: 500;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.trust-list {
  flex-wrap: wrap;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
}

.trust-list li::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.trust-list li + li {
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.product-path {
  color: var(--inverse-ink);
  background: var(--dark);
}

.path-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 48px;
  align-items: end;
  padding: 56px 0 42px;
}

.section-label {
  color: var(--inverse-label);
}

.path-heading h2,
.section-intro h2,
.evidence-heading h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.path-heading h2 {
  max-width: 720px;
  font-size: 38px;
  line-height: 1.18;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--inverse-line);
  list-style: none;
}

.path-step {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 36px 30px 42px 0;
}

.path-step + .path-step {
  border-left: 1px solid var(--inverse-line);
  padding-left: 30px;
}

.path-step::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 88px;
  height: 3px;
  background: var(--blue);
  content: "";
}

.understand-step::before {
  left: 30px;
  background: var(--orange);
}

.run-step::before {
  left: 30px;
  background: var(--green);
}

.step-number {
  padding-top: 8px;
  color: var(--inverse-index);
  font-family: var(--mono);
  font-size: 12px;
}

.path-step h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.path-step p {
  max-width: 280px;
  margin: 0;
  color: var(--inverse-muted);
  font-size: 16px;
  line-height: 1.6;
}

.inside-section {
  padding: 104px 0 112px;
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 48px;
  margin-bottom: 68px;
}

.dark-label {
  color: var(--blue);
}

.section-intro h2 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.14;
}

.section-intro > div > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-list {
  border-top: 1px solid var(--ink);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(240px, 0.9fr) minmax(0, 1.45fr);
  gap: 36px;
  align-items: start;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.feature-index {
  padding-top: 5px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.feature-row h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-row code {
  color: var(--ink);
}

.evidence-section {
  padding: 78px 0;
  background: var(--blue-soft);
}

.evidence-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.65fr);
  gap: 72px;
  align-items: end;
}

.evidence-heading h2 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.2;
}

.evidence-list {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  margin: 0;
}

.evidence-list div {
  min-width: 0;
  padding: 6px 24px;
  border-left: 1px solid var(--evidence-line);
}

.evidence-list dt {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.evidence-list dd {
  margin: 0;
  color: var(--evidence-muted);
  font-size: 13px;
  line-height: 1.5;
}

.final-cta {
  color: var(--on-accent);
  background: var(--blue-action);
}

.final-cta-inner {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-block: 56px;
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: 42px;
  line-height: 1.18;
}

.button-light {
  flex: 0 0 auto;
  color: var(--light-button-ink);
  background: var(--light-button-bg);
}

.button-light:hover {
  background: var(--light-button-hover);
}

.site-footer {
  color: var(--footer-ink);
  background: var(--dark);
}

.footer-inner {
  min-height: 106px;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.footer-brand strong {
  color: var(--footer-strong);
  font-size: 16px;
}

.footer-brand span,
.site-footer nav {
  color: var(--footer-muted);
  font-size: 13px;
}

.site-footer nav {
  gap: 24px;
}

@media (max-width: 920px) {
  .nav-link {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 56px;
  }

  .path-heading,
  .section-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .path-heading {
    padding-bottom: 36px;
  }

  .path-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding-right: 20px;
  }

  .path-step + .path-step {
    padding-left: 20px;
  }

  .understand-step::before,
  .run-step::before {
    left: 20px;
  }

  .section-intro h2 {
    font-size: 42px;
  }

  .feature-row {
    grid-template-columns: 120px minmax(210px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
  }

  .evidence-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .evidence-list div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .header-inner {
    min-height: 62px;
  }

  .brand-copy small {
    display: none;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero h1 {
    margin: 20px 0 24px;
    font-size: 44px;
    line-height: 1.06;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    margin-top: 26px;
  }

  .trust-list li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .path-heading {
    padding: 44px 0 34px;
  }

  .path-heading h2 {
    font-size: 31px;
  }

  .path-steps {
    grid-template-columns: 1fr;
  }

  .path-step,
  .path-step + .path-step {
    min-height: 0;
    padding: 30px 0 34px;
    border-left: 0;
    border-top: 1px solid var(--inverse-line);
  }

  .path-step:first-child {
    border-top: 0;
  }

  .path-step::before,
  .understand-step::before,
  .run-step::before {
    top: -2px;
    left: 0;
  }

  .path-step:first-child::before {
    top: 0;
  }

  .path-step p {
    max-width: 520px;
  }

  .inside-section {
    padding: 72px 0 78px;
  }

  .section-intro {
    margin-bottom: 46px;
  }

  .section-intro h2 {
    font-size: 36px;
  }

  .section-intro > div > p {
    font-size: 17px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0 30px;
  }

  .feature-row h3 {
    font-size: 23px;
  }

  .evidence-section {
    padding: 64px 0;
  }

  .evidence-heading h2 {
    font-size: 31px;
  }

  .evidence-list {
    grid-template-columns: 1fr;
  }

  .evidence-list div,
  .evidence-list div:first-child {
    padding: 20px 0;
    border-top: 1px solid var(--evidence-line);
    border-left: 0;
  }

  .evidence-list div:last-child {
    padding-bottom: 0;
  }

  .final-cta-inner {
    min-height: 320px;
    gap: 30px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .button-light {
    width: 100%;
  }

  .footer-inner,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-content: center;
    min-height: 150px;
    gap: 24px;
    padding-block: 30px;
  }

  .footer-brand {
    gap: 4px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .header-inner {
    gap: 12px;
  }

  .primary-nav {
    gap: 8px;
  }

  .theme-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
  }

  .theme-toggle-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
