:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #171512;
  --ink-soft: #25211c;
  --muted: #625d55;
  --line: #ded8ce;
  --accent: #2f5f58;
  --accent-dark: #20433e;
  --pop: #d7ff64;
  --aqua: #7db9ad;
  --soft: #efebe3;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  animation: page-in 600ms ease both;
}

body::selection {
  background: #d9e7df;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #9eb8ae;
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: header-in 650ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 13px;
  box-shadow: 4px 4px 0 var(--soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand-mark::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--pop);
  border-bottom: 2px solid var(--pop);
  border-radius: 0 0 7px 0;
  content: "";
  transition:
    width 180ms ease,
    height 180ms ease;
}

.brand:hover .brand-mark {
  box-shadow: 6px 6px 0 var(--soft);
  transform: translateY(-1px);
}

.brand:hover .brand-mark::after {
  width: 17px;
  height: 17px;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.nav-cta,
.button {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.section-pad {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 64px;
  min-height: calc(100vh - 77px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.shape-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  display: block;
  opacity: 0.75;
  will-change: transform;
}

.shape-square {
  top: 110px;
  right: 37%;
  width: 94px;
  height: 94px;
  border: 1px solid var(--line);
  transform: rotate(12deg);
  animation: float-square 8s ease-in-out infinite;
}

.shape-pill {
  right: 1%;
  bottom: 116px;
  width: 176px;
  height: 52px;
  border: 1px solid var(--aqua);
  border-radius: 999px;
  transform: rotate(-9deg);
  animation: float-pill 9s ease-in-out infinite 600ms;
}

.shape-plus {
  top: 85%;
  left: -18px;
  width: 42px;
  height: 42px;
  animation: float-plus 7s ease-in-out infinite 300ms;
}

.shape-plus::before,
.shape-plus::after {
  position: absolute;
  content: "";
  background: var(--accent);
}

.shape-plus::before {
  top: 18px;
  left: 0;
  width: 42px;
  height: 6px;
}

.shape-plus::after {
  top: 0;
  left: 18px;
  width: 6px;
  height: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  background: var(--pop);
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 7.5vw, 6.35rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-copy {
  animation: lift-in 720ms ease 90ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  line-height: 1;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 6px 6px 0 var(--pop);
}

.button.secondary {
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
  transform: translateY(-2px);
}

.lab-console {
  position: relative;
  align-self: end;
  min-height: 560px;
  margin-bottom: 36px;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  border-radius: 22px;
  box-shadow:
    12px 12px 0 var(--soft),
    -1px -1px 0 var(--pop);
  animation: lift-in 760ms ease 180ms both;
}

.lab-console::before {
  position: absolute;
  top: 82px;
  right: -46px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(215, 255, 100, 0.7);
  border-radius: 50%;
  content: "";
}

.lab-console::after {
  position: absolute;
  top: 128px;
  right: 11px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(125, 185, 173, 0.8);
  transform: rotate(18deg);
  content: "";
}

.console-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.console-top span {
  width: 10px;
  height: 10px;
  background: var(--pop);
  border-radius: 50%;
}

.console-top span:nth-child(2) {
  background: #ffffff;
}

.console-top span:nth-child(3) {
  background: var(--aqua);
}

.console-grid {
  position: relative;
  height: 330px;
  margin: 18px;
  overflow: hidden;
  background: #201d18;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.console-grid::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
}

.console-grid::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(215, 255, 100, 0.5);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
}

.workflow-card,
.workflow-core,
.flow-line {
  position: absolute;
  display: block;
}

.workflow-card {
  z-index: 2;
  width: 134px;
  padding: 12px;
  background: #171512;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 5px 5px 0 rgba(215, 255, 100, 0.08);
  animation: card-signal 5.5s ease-in-out infinite;
}

.card-data {
  animation-delay: 500ms;
}

.card-review {
  animation-delay: 1s;
}

.card-output {
  animation-delay: 1.5s;
}

.workflow-card span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--ink);
  background: var(--pop);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.workflow-card strong,
.workflow-card small {
  display: block;
}

.workflow-card strong {
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.workflow-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.25;
}

.workflow-core {
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: var(--pop);
  color: var(--ink);
  border: 1px solid var(--pop);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-glow 4s ease-in-out infinite;
}

.workflow-core span,
.workflow-core strong {
  display: block;
}

.workflow-core span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.workflow-core strong {
  max-width: 78px;
  font-size: 0.72rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.card-input {
  top: 30px;
  left: 28px;
}

.card-data {
  top: 30px;
  right: 28px;
}

.card-review {
  bottom: 30px;
  left: 28px;
}

.card-output {
  right: 28px;
  bottom: 30px;
}

.flow-line {
  z-index: 1;
  height: 1px;
  background: rgba(215, 255, 100, 0.72);
  transform-origin: left center;
  animation: line-signal 3.6s ease-in-out infinite;
}

.flow-line::after {
  position: absolute;
  top: -4px;
  right: -1px;
  width: 9px;
  height: 9px;
  background: var(--pop);
  border-radius: 50%;
  content: "";
  animation: dot-signal 3.6s ease-in-out infinite;
}

.line-data,
.line-data::after {
  animation-delay: 350ms;
}

.line-review,
.line-review::after {
  animation-delay: 700ms;
}

.line-output,
.line-output::after {
  animation-delay: 1.05s;
}

.line-input {
  top: 112px;
  left: 148px;
  width: 128px;
  transform: rotate(22deg);
}

.line-data {
  top: 112px;
  right: 148px;
  width: 128px;
  transform: rotate(158deg);
}

.line-review {
  bottom: 112px;
  left: 148px;
  width: 128px;
  transform: rotate(-22deg);
}

.line-output {
  right: 148px;
  bottom: 112px;
  width: 128px;
  transform: rotate(202deg);
}

.console-readout {
  display: grid;
  gap: 0;
  margin: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.console-readout div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-readout strong {
  font-weight: 750;
}

.split-section,
.outcomes {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.section-framed {
  padding-right: 36px;
  padding-left: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 10px 10px 0 var(--soft);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child,
.final-cta p:last-of-type {
  margin-bottom: 0;
}

.services,
.process,
.team-section {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  min-height: 174px;
  padding: 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-item:hover {
  border-color: rgba(47, 95, 88, 0.35);
  box-shadow: 8px 8px 0 var(--soft);
  transform: translateY(-3px);
}

.service-item::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-right: 1px solid var(--aqua);
  border-bottom: 1px solid var(--aqua);
  content: "";
  opacity: 0.75;
}

.service-item:nth-child(3n + 1) {
  box-shadow: 6px 6px 0 var(--soft);
}

.service-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--pop);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.service-item p,
.process-grid p,
.final-cta p,
.site-footer p,
.outcome-row span {
  color: var(--muted);
}

.service-item p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-grid article {
  min-height: 240px;
  padding: 24px;
  background: var(--ink-soft);
  color: #ffffff;
  border: 1px solid var(--ink);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--soft);
}

.team-grid article:nth-child(2) {
  transform: translateY(18px);
}

.team-grid article:nth-child(3) {
  transform: translateY(36px);
}

.team-grid span {
  display: block;
  margin-bottom: 68px;
  color: var(--pop);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  position: relative;
  min-height: 280px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.process-grid article:hover {
  border-color: rgba(47, 95, 88, 0.35);
  transform: translateY(-3px);
}

.process-grid article::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  content: "";
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 52px;
  padding: 7px 10px;
  color: var(--accent);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.outcomes-copy {
  align-self: start;
}

.outcome-table {
  border-top: 1px solid var(--ink);
}

.outcome-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.final-cta {
  max-width: 920px;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  top: 54px;
  left: 28px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.final-cta::after {
  right: 24px;
  bottom: 70px;
  width: 118px;
  height: 42px;
  border: 1px solid var(--aqua);
  border-radius: 999px;
  transform: rotate(12deg);
}

.final-cta h2 {
  margin-bottom: 22px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--ink);
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand {
  gap: 10px;
  font-size: 1rem;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--soft);
}

.footer-brand .brand-mark::after {
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-radius: 0 0 5px 0;
}

.footer-brand img {
  width: 22px;
  height: 22px;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
}

address {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

address a:hover {
  color: var(--ink);
}

@keyframes page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-square {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
  }

  50% {
    transform: translateY(-12px) rotate(16deg);
  }
}

@keyframes float-pill {
  0%,
  100% {
    transform: translateY(0) rotate(-9deg);
  }

  50% {
    transform: translateY(10px) rotate(-13deg);
  }
}

@keyframes float-plus {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(8px) rotate(6deg);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes card-signal {
  0%,
  100% {
    box-shadow: 5px 5px 0 rgba(215, 255, 100, 0.08);
  }

  50% {
    box-shadow: 5px 5px 0 rgba(215, 255, 100, 0.18);
  }
}

@keyframes core-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 255, 100, 0);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(215, 255, 100, 0.12);
  }
}

@keyframes line-signal {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.9;
  }
}

@keyframes dot-signal {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(215, 255, 100, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(215, 255, 100, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .shape-square {
    transform: rotate(12deg) !important;
  }

  .shape-pill {
    transform: rotate(-9deg) !important;
  }

  .workflow-core {
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .outcomes,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-top: 72px;
  }

  .lab-console {
    align-self: stretch;
    margin-bottom: 0;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid article,
  .team-grid article:nth-child(2),
  .team-grid article:nth-child(3) {
    transform: none;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-pad,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: static;
    padding: 14px 0;
  }

  .brand > span:not(.brand-mark) {
    font-size: 0.96rem;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 11px;
    box-shadow: 3px 3px 0 var(--soft);
  }

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

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

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

  .section-framed {
    width: min(100% - 20px, var(--max));
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-text,
  .intro-copy,
  .final-cta p {
    font-size: 1rem;
  }

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

  .service-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .outcome-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lab-console {
    min-height: 0;
    border-radius: 16px;
    box-shadow: 7px 7px 0 var(--soft);
  }

  .console-grid {
    height: 370px;
    margin: 14px;
  }

  .workflow-card {
    width: 128px;
    padding: 10px;
  }

  .workflow-card span {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .workflow-card strong {
    font-size: 0.86rem;
  }

  .workflow-card small {
    font-size: 0.7rem;
  }

  .workflow-core {
    width: 104px;
    height: 104px;
    padding: 14px;
  }

  .workflow-core span {
    font-size: 1.8rem;
  }

  .workflow-core strong {
    font-size: 0.65rem;
  }

  .card-input,
  .card-review {
    left: 14px;
  }

  .card-data,
  .card-output {
    right: 14px;
  }

  .card-input,
  .card-data {
    top: 20px;
  }

  .card-review,
  .card-output {
    bottom: 20px;
  }

  .line-input,
  .line-review {
    left: 120px;
    width: 74px;
  }

  .line-data,
  .line-output {
    right: 120px;
    width: 74px;
  }

  .line-input,
  .line-data {
    top: 104px;
  }

  .line-review,
  .line-output {
    bottom: 104px;
  }

  .console-readout {
    margin: 0 14px 14px;
  }

  .console-readout div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .team-grid span {
    margin-bottom: 42px;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 28px;
  }

  .shape-square,
  .shape-pill,
  .final-cta::before,
  .final-cta::after {
    display: none;
  }
}
