/* [project]/web/components/landing/illustrations.css [app-client] (css) */
.landing .l-host-outline {
  width: min(100%, 22rem);
  margin: auto;
  display: block;
}

.landing .l-art-guide {
  stroke: var(--cicd-border-l1);
  stroke-width: 1px;
}

.landing .l-art-surface {
  fill: var(--xc-plate-bg);
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
}

.landing .l-art-line {
  stroke: var(--cicd-fg-secondary);
  stroke-width: 1.25px;
}

.landing .l-art-accent {
  stroke: var(--xc-accent);
  stroke-width: 1.5px;
}

.landing .l-art-light {
  fill: var(--xc-accent);
}

.landing .xc-art-plate {
  fill: var(--xc-plate-bg);
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
  stroke-linejoin: miter;
}

.landing .xc-art-plate-raised {
  fill: var(--cicd-surface-elevated);
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
  stroke-linejoin: miter;
}

.landing .xc-art-inset {
  fill: var(--cicd-surface-inset);
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
}

.landing .xc-art-shadow, .landing .xc-art-cut {
  fill: var(--xc-edge-lo);
}

.landing .xc-art-bolt {
  fill: var(--xc-bolt);
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
}

.landing .xc-art-hi {
  stroke: var(--xc-edge-hi);
  stroke-width: 1px;
}

.landing .xc-art-mid {
  stroke: var(--xc-edge-mid);
  stroke-width: 1px;
}

.landing .xc-art-lo {
  stroke: var(--xc-edge-lo);
  stroke-width: 1px;
}

.landing .xc-art-line {
  stroke: var(--cicd-fg-secondary);
  stroke-width: 1.5px;
  stroke-linecap: square;
}

.landing .xc-art-accent {
  fill: var(--xc-accent);
}

.landing .xc-art-accent-stroke {
  stroke: var(--xc-accent);
  stroke-width: 2px;
  stroke-linecap: square;
}

.landing .xc-art-text {
  fill: var(--cicd-fg-tertiary);
  font: 500 9px var(--xc-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.landing .l-topology {
  margin: 0;
  overflow: hidden;
}

.landing .l-art-heading {
  justify-content: space-between;
  align-items: center;
  gap: var(--g-space-4);
  padding: var(--g-space-4) var(--g-space-6);
  border-bottom: var(--xc-seam) solid var(--xc-edge-lo);
  box-shadow: 0 1px 0 var(--xc-edge-mid);
  color: var(--cicd-fg-tertiary);
  font: 500 11px/1.5 var(--xc-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
}

.landing .l-topology-svg {
  width: 100%;
  height: auto;
  display: block;
}

.landing .l-topology-edges {
  stroke: var(--xc-edge-lo);
  stroke-width: 2px;
}

.landing .l-topology-rail-hi {
  stroke: var(--xc-edge-mid);
  stroke-width: 1px;
}

.landing .l-topology-trace {
  stroke: var(--xc-accent);
  stroke-width: 2px;
  stroke-dasharray: 24 400;
  opacity: 0;
}

.landing .l-topology:hover .l-topology-trace {
  opacity: 1;
  animation: .56s steps(8, end) both l-topology-trace;
}

.landing .l-topology-labels {
  gap: var(--g-space-4);
  padding: 0 var(--g-space-6) var(--g-space-6);
  text-align: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
}

.landing .l-topology-labels > div {
  min-width: 0;
}

.landing .l-topology-labels :is(span, strong, small) {
  display: block;
}

.landing .l-topology-labels span {
  font: 500 11px/1.5 var(--xc-mono);
  letter-spacing: .14em;
  color: var(--cicd-fg-tertiary);
  margin-bottom: var(--g-space-2);
}

.landing .l-topology-labels strong {
  font-size: var(--g-type-sm);
  font-weight: 600;
}

.landing .l-topology-labels small {
  font-size: var(--g-type-xs);
  color: var(--cicd-fg-secondary);
  margin-top: var(--g-space-2);
}

.landing .l-topology figcaption {
  padding: var(--g-space-3) var(--g-space-6);
  background: var(--cicd-surface-inset);
  border-top: var(--xc-seam) solid var(--xc-edge-lo);
  color: var(--cicd-fg-secondary);
  font-size: var(--g-type-xs);
  text-align: center;
}

.landing .l-build-timeline {
  background: var(--xc-plate-bg);
  clip-path: var(--xc-clip-plate);
  box-shadow: inset 0 1px 0 var(--xc-edge-hi), inset 1px 0 0 var(--xc-edge-mid), inset -1px 0 0 var(--xc-edge-lo), inset 0 -1px 0 var(--xc-edge-lo);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.landing .l-build-timeline > svg {
  width: 100%;
  padding-inline: var(--g-space-4);
  display: block;
}

.landing .l-timeline-prep, .landing .l-timeline-clean {
  fill: var(--cicd-surface-l2-active);
  stroke: var(--xc-edge-lo);
}

.landing .l-timeline-build {
  fill: var(--xc-accent);
  stroke: var(--xc-edge-lo);
}

.landing .l-build-timeline ol {
  gap: var(--g-space-2);
  padding: 0 var(--g-space-6) var(--g-space-5);
  color: var(--cicd-fg-secondary);
  font: 500 11px/1.5 var(--xc-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  list-style: none;
  display: grid;
}

.landing .l-build-timeline li:nth-child(2) {
  text-align: center;
}

.landing .l-build-timeline li:last-child {
  text-align: right;
}

@keyframes l-topology-trace {
  from {
    stroke-dashoffset: 400px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 700px) {
  .landing .l-art-heading {
    padding: var(--g-space-3) var(--g-space-4);
  }

  .landing .l-topology-svg {
    min-height: 10rem;
  }

  .landing .l-topology-labels {
    gap: var(--g-space-2);
    padding: 0 var(--g-space-3) var(--g-space-5);
  }

  .landing .l-topology-labels span {
    letter-spacing: .08em;
  }

  .landing .l-topology-labels strong {
    font-size: var(--g-type-xs);
    min-height: 3em;
  }

  .landing .l-topology-labels small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing .l-topology:hover .l-topology-trace {
    opacity: 0;
    animation: none;
  }
}

.landing .l-topology figcaption.l-visually-hidden {
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

/* [project]/web/components/landing/cicd-home.css [app-client] (css) */
.cicd-home {
  box-sizing: border-box;
  width: min(1120px, 100%);
  color: var(--cicd-fg-primary);
  word-break: keep-all;
  margin: 0 auto;
  padding: 96px 32px 112px;
}

.cicd-home-nowrap {
  white-space: nowrap;
}

.cicd-home h1, .cicd-home h2, .cicd-home h3, .cicd-home p {
  margin: 0;
}

.cicd-home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
  display: grid;
}

.cicd-home h1.xc-display {
  letter-spacing: -.01em;
  white-space: pre-line;
  text-transform: none;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
}

.cicd-home-intro p {
  max-width: 44ch;
  color: var(--cicd-fg-secondary);
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
}

.cicd-home-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  display: flex;
}

.cicd-home-primary, .cicd-home-secondary {
  min-height: 44px;
  padding: 0 22px;
}

.cicd-home-spec {
  --xc-chamfer: 6px;
  background: var(--cicd-surface-inset);
  flex-wrap: wrap;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.cicd-home-spec li {
  border-right: var(--xc-seam) solid var(--xc-edge-lo);
  min-height: 34px;
  box-shadow: inset -1px 0 0 var(--xc-edge-mid);
  white-space: nowrap;
  align-items: center;
  padding: 0 14px;
  display: flex;
}

.cicd-home-spec li:first-child {
  color: var(--cicd-fg-primary);
}

.cicd-home-spec li:last-child {
  box-shadow: none;
  border-right: 0;
}

.cicd-home a:focus-visible, .cicd-home button:focus-visible {
  outline: 2px solid var(--cicd-ring);
  outline-offset: 2px;
  box-shadow: none;
}

.cicd-home-stack {
  gap: 12px;
  min-width: 0;
  display: grid;
}

.cicd-home-stack > * {
  min-width: 0;
}

.cicd-home-receiver {
  background: repeating-linear-gradient(90deg, var(--cicd-border-l1) 0 var(--xc-seam), transparent var(--xc-seam) 24px),
    var(--cicd-surface-inset);
  margin: 0;
  padding: 18px 28px 12px;
}

.cicd-home-receiver .l-host-outline {
  width: min(100%, 26rem);
}

.cicd-home-workflow {
  min-width: 0;
}

.cicd-home-workflow-bar {
  border-bottom: var(--xc-seam) solid var(--xc-edge-lo);
  min-height: 44px;
  box-shadow: 0 1px 0 var(--xc-edge-mid);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 6px 24px;
  display: flex;
}

.cicd-home-copy {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

html[data-code-wrap] .cicd-home .cicd-home-workflow pre, html[data-code-wrap] .cicd-home .cicd-home-workflow pre code {
  white-space: pre;
  overflow-wrap: normal;
}

.cicd-home-workflow pre {
  color: var(--cicd-fg-tertiary);
  font: 13.5px/1.75 var(--xc-mono);
  margin: 0;
  padding: 20px 24px 22px;
  overflow-x: auto;
}

.cicd-home-workflow .is-run {
  background: var(--cicd-surface-inset);
  box-shadow: inset 2px 0 0 var(--xc-accent);
  color: var(--cicd-fg-primary);
  margin: 0 0 0 -8px;
  padding: 0 8px;
  font-weight: 500;
}

.cicd-home-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 96px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.cicd-home-facts li {
  border-right: var(--xc-seam) solid var(--xc-edge-lo);
  box-shadow: inset -1px 0 0 var(--xc-edge-mid);
  padding: 28px 28px 30px;
}

.cicd-home-facts li:last-child {
  box-shadow: none;
  border-right: 0;
}

.cicd-home-facts h2 {
  font-size: 16px;
  font-weight: 640;
  line-height: 1.45;
}

.cicd-home-facts p {
  color: var(--cicd-fg-secondary);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.cicd-home-how {
  margin-top: 96px;
}

.cicd-home h2.xc-display {
  letter-spacing: -.005em;
  white-space: pre-line;
  text-transform: none;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.cicd-home-how ol {
  counter-reset: cicd-step;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.cicd-home-how li {
  padding: 24px 24px 26px;
}

.cicd-home-how li::marker {
  content: none;
}

.cicd-home-how li > h3:before {
  content: "STEP " counter(cicd-step, decimal-leading-zero);
  counter-increment: cicd-step;
  color: var(--cicd-fg-tertiary);
  font: 500 11px/1.2 var(--xc-mono);
  letter-spacing: .14em;
  margin-bottom: 14px;
  display: block;
}

.cicd-home-how h3 {
  font-size: 16px;
  font-weight: 640;
  line-height: 1.45;
}

.cicd-home-how li p {
  color: var(--cicd-fg-secondary);
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.cicd-home .cicd-home-more {
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 36px;
  display: flex;
}

.cicd-home-more a {
  min-height: 32px;
  color: var(--cicd-fg-primary);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--cicd-border-l3);
  text-decoration-color: var(--cicd-border-l3);
  text-underline-offset: 5px;
  transition: text-decoration-color var(--xc-motion-fast);
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration-thickness: 1px;
  display: inline-flex;
}

.cicd-home-more a:hover {
  -webkit-text-decoration-color: var(--xc-accent);
  text-decoration-color: var(--xc-accent);
}

@media (max-width: 900px) {
  .cicd-home {
    padding: 56px 20px 72px;
  }

  .cicd-home-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .cicd-home h1.xc-display {
    font-size: 42px;
  }

  .cicd-home-facts, .cicd-home-how ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .cicd-home-facts li {
    border-right: 0;
    border-bottom: var(--xc-seam) solid var(--xc-edge-lo);
    box-shadow: inset 0 -1px 0 var(--xc-edge-mid);
    padding: 22px 22px 24px;
  }

  .cicd-home-facts li:last-child {
    box-shadow: none;
    border-bottom: 0;
  }

  .cicd-home-facts {
    margin-top: 56px;
  }

  .cicd-home-how {
    margin-top: 64px;
  }

  .cicd-home h2.xc-display {
    font-size: 28px;
  }

  .cicd-home-receiver {
    padding: 14px 18px 10px;
  }
}

@media (max-width: 520px) {
  .cicd-home {
    padding: 32px 16px 56px;
  }

  .cicd-home h1.xc-display {
    font-size: 34px;
  }

  .cicd-home-intro p {
    font-size: 16px;
  }

  .cicd-home-spec li {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .cicd-home-workflow-bar {
    padding-left: 18px;
  }

  .cicd-home-workflow pre {
    padding: 16px 18px 18px;
    font-size: 12.5px;
  }

  .cicd-home-how li {
    padding: 20px 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cicd-home-more a {
    transition: none;
  }
}

/*# sourceMappingURL=web_components_landing_1phsx0g._.css.map*/