:root {
  --color-purple: hsl(255 55% 45%);
  --color-chevron: hsl(218 11% 65%);
  --color-text: hsl(217 19% 27%);
  --color-text-strong: hsl(0 0% 7%);
  --color-bg: hsl(0 0% 100%);
  --color-muted: hsl(218 11% 65%);
  --color-border: hsl(220 10% 85%);
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.home-index main,
.home-install main,
.home-actions .main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}

.home-index .logo,
.home-install .logo,
.home-actions .logo {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 32px;
}

.home-index .logo svg,
.home-install .logo svg,
.home-actions .logo svg {
  display: block;
  width: 270px;
  height: 60px;
  max-width: 100%;
}

.home-install .back-links,
.home-actions .back-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.home-install .back-links a,
.home-actions .back-links a {
  color: var(--color-purple);
  font-size: 16px;
  text-decoration: none;
  text-underline-offset: 3px;
}

.home-install .back-links a:hover,
.home-actions .back-links a:hover {
  text-decoration: underline;
}

.home-index p {
  margin: 0 0 18px;
  line-height: 1.5;
  font-size: 18px;
}

.home-index b {
  color: var(--color-text-strong);
  font-weight: 700;
}

.home-index .pipeline {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}

.home-index .pipeline-step {
  align-items: center;
  display: flex;
  margin-top: 14px;
}

.home-index .pipeline-step:first-child {
  margin-top: 0;
}

.home-index .step-icon {
  display: inline-block;
  line-height: 0;
  margin-right: 10px;
  vertical-align: middle;
}

.home-index .step-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.home-index .arrow {
  color: var(--color-chevron);
  line-height: 0;
}

.home-index .arrow svg {
  display: block;
  width: 18px;
  height: 18px;
  transform: translate(-2px, 1px);
}

.home-index .links {
  margin-top: 28px;
}

.home-index .links a {
  display: block;
}

.home-index .links a + a {
  margin-top: 28px;
}

.home-index .links a {
  color: var(--color-purple);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.home-index .links a:hover {
  text-decoration: underline;
}

.home-install h1 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.1;
}

.home-install p {
  margin: 0 0 18px;
  line-height: 1.45;
  font-size: 17px;
}

.home-install ol {
  margin: 0 0 28px;
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.5;
}

.home-install li + li {
  margin-top: 10px;
}

.home-install ol a {
  color: var(--color-purple);
  text-underline-offset: 3px;
}

.home-install .download-link {
  font-weight: 700;
}

.home-actions caption {
  caption-side: top;
  text-align: left;
  color: var(--color-text-strong);
  font-weight: 700;
  padding: 0 0 6px;
}

.home-actions .table-caption-title {
  align-items: center;
  color: var(--color-text-strong);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.35;
}

.home-actions table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
  margin-bottom: 30px;
}

.home-actions col {
  width: 25%;
}

.home-actions td {
  border: 1px solid var(--color-border);
  padding: 6px 8px;
  vertical-align: top;
  word-break: break-word;
}

.home-actions .action-applicability {
  color: var(--color-muted);
}
