.wf-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #cccccc;
}
@media (max-width: 900px) {
  .wf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .wf-grid {
    grid-template-columns: 1fr;
  }
}
.wf-card {
  display: block;
  padding: 2rem;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid #cccccc;
  transition: background 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wf-card:hover {
  background: #e8edf3;
  color: inherit;
}
.wf-grid > li:last-child .wf-card {
  border-right: none;
}
.wf-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.wf-card p {
  font-size: 0.84rem;
  font-weight: 300;
  color: #555555;
  margin: 0;
  line-height: 1.7;
}
.workflow-group .section-header {
  margin-bottom: 1rem;
}
.workflow-group .section-intro {
  margin-bottom: 2rem;
}
.workflow-group .wf-grid {
  border-bottom: 1px solid #cccccc;
}
.workflow-group .wf-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.workflow-group .wf-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.workflow-group .wf-grid > li {
  border-bottom: 1px solid #cccccc;
}
.workflow-group .wf-card {
  height: 100%;
}
@media (min-width: 901px) {
  .workflow-group .wf-grid > li:nth-child(4n) .wf-card {
    border-right: none;
  }
}
@media (max-width: 900px) and (min-width: 561px) {
  .workflow-group .wf-grid > li:nth-child(2n) .wf-card {
    border-right: none;
  }
  .workflow-group .wf-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .workflow-group .wf-grid-3 {
    grid-template-columns: 1fr;
  }
  .workflow-group .wf-card {
    border-right: none;
  }
}
.workflow-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: start;
  border-top: 1px solid #cccccc;
  padding-top: 2rem;
}
.workflow-journey .section-intro {
  margin-bottom: 0;
}
.workflow-journey + .wf-grid {
  margin-top: 2rem;
}
.workflow-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 16rem;
}
.workflow-actions .btn {
  justify-content: center;
  width: 100%;
}
@media (max-width: 760px) {
  .workflow-journey {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .workflow-actions {
    min-width: 0;
  }
}
.lens-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #cccccc;
}
@media (max-width: 980px) {
  .lens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .lens-grid {
    grid-template-columns: 1fr;
  }
}
.lens-card {
  border-right: 1px solid #cccccc;
  position: relative;
  transition: background 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lens-card:last-child {
  border-right: none;
}
.lens-card:hover {
  background: #e8edf3;
}
.lens-card-link {
  display: block;
  height: 100%;
  padding: 2rem;
  color: inherit;
  border-bottom: none;
}
.lens-card-link:hover {
  color: inherit;
  border-bottom: none;
}
.lens-card-link::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--arc);
  margin-bottom: 1rem;
}
.lens-type {
  display: block;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a3556;
  margin-bottom: 0.45rem;
}
.lens-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.lens-card p {
  color: #555555;
  font-size: 0.78rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.65;
}
.metrics-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 760px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
.metric-card {
  display: block;
  position: relative;
  padding: 2rem 2rem 3.5rem;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.metric-card:hover {
  border-color: var(--arc);
  background: #e8edf3;
  color: inherit;
}
.metric-card::after {
  content: "\2192";
  position: absolute;
  bottom: 2rem;
  right: 1.8rem;
  font-size: 1.1rem;
  color: #cccccc;
  transition: color 0.15s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.15s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.metric-card:hover::after {
  color: var(--arc);
  transform: translateX(3px);
}
.metric-label {
  display: block;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a3556;
  margin-bottom: 0.75rem;
}
.metric-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.metric-card p {
  color: #555555;
  font-size: 0.86rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}
.metrics-divider {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 4rem 0 0.75rem;
}
.metrics-divider-label {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888888;
  margin: 0 0 1rem;
}
.metrics-grid-aliases {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .metrics-grid-aliases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .metrics-grid-aliases {
    grid-template-columns: 1fr;
  }
}
.metric-card-alias {
  padding: 1rem 1rem 2.5rem;
}
.metric-card-alias h3 {
  font-size: 0.95rem;
}
.feature-table--reference tbody td {
  vertical-align: top;
}
.feature-table--reference tbody tr.feat-group td {
  color: #000000;
  border-left: 3px solid #1a3556;
}
.feature-table--reference tbody tr:not(.feat-group) td:nth-child(1) {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a3556;
  min-width: 200px;
}
.feature-table--reference tbody tr:not(.feat-group) td:nth-child(2) {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
  color: #555555;
  min-width: 140px;
}
.feature-table--reference tbody tr:not(.feat-group) td:nth-child(4) {
  color: #555555;
  font-size: 0.78rem;
}
.feature-table--reference tbody tr:not(.feat-group):hover td {
  background: #e8edf3;
}
.feature-table--reference tbody td a {
  color: #1a3556;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.feature-table--reference tbody td a:hover {
  color: #2d4f7a;
}
