:root {
  color: #14211c;
  background: #f4f7f3;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

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

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  min-height: 84px;
  border-bottom: 1px solid #c7d0c9;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
}

.brand small,
footer,
.summary,
.endpoint span,
.pipeline small {
  color: #607168;
}

.brand small {
  font-size: 12px;
}

.live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #246b42;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35a65f;
  box-shadow: 0 0 0 5px #d9eee0;
}

main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 74px 64px;
  padding: 82px 0 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #447d32;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
}

.summary {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.endpoint {
  display: grid;
  gap: 7px;
  margin-top: 38px;
}

.endpoint span,
.console-head,
.pipeline span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.endpoint code {
  color: #9a4c24;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.console {
  align-self: center;
  min-height: 372px;
  padding: 28px;
  border: 1px solid #18372a;
  border-radius: 6px;
  color: #edf6ef;
  background: #10251d;
  box-shadow: 14px 14px 0 #d8dfd8;
}

.console-head {
  display: flex;
  justify-content: space-between;
  color: #9db6a4;
}

.console-head b {
  color: #f0aa70;
}

.pulse {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 96px;
  margin: 28px 0;
  border-bottom: 1px solid #355247;
}

.pulse span {
  flex: 1;
  min-width: 10px;
  background: #63b679;
  animation: signal 2.8s ease-in-out infinite alternate;
}

.pulse span:nth-child(1) { height: 28%; }
.pulse span:nth-child(2) { height: 62%; animation-delay: .2s; }
.pulse span:nth-child(3) { height: 45%; animation-delay: .4s; }
.pulse span:nth-child(4) { height: 82%; animation-delay: .6s; }
.pulse span:nth-child(5) { height: 54%; animation-delay: .8s; }
.pulse span:nth-child(6) { height: 72%; animation-delay: 1s; }
.pulse span:nth-child(7) { height: 38%; animation-delay: 1.2s; }

@keyframes signal {
  to { transform: scaleY(.68); transform-origin: bottom; }
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #29483b;
}

dt {
  color: #9db6a4;
  font-size: 12px;
}

dd {
  margin: 0;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  text-align: right;
}

.pipeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 4px solid #14211c;
  border-bottom: 1px solid #c7d0c9;
}

.pipeline div {
  min-height: 104px;
  padding: 22px 18px 18px 0;
}

.pipeline div + div {
  padding-left: 18px;
  border-left: 1px solid #c7d0c9;
}

.pipeline span {
  color: #9a4c24;
}

.pipeline strong,
.pipeline small {
  display: block;
}

.pipeline strong {
  margin: 10px 0 4px;
  font-size: 15px;
}

.pipeline small {
  font-size: 12px;
  overflow-wrap: anywhere;
}

footer {
  padding: 24px 0 38px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1140px);
  }

  main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 58px;
  }

  h1 {
    font-size: 42px;
  }

  .console {
    min-height: 350px;
    box-shadow: 8px 8px 0 #d8dfd8;
  }

  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid #c7d0c9;
    border-left: 0;
  }

  .pipeline div:nth-child(4) {
    border-top: 1px solid #c7d0c9;
  }
}
