/* Selected Mattcoin direction: Systems by Design. */

.system-design {
  --blue: #1d9fe6;
  --blue-soft: #70d6ff;
  --mint: #70ebc8;
  --line: #1f4662;
  --line-bright: #2a688d;
}

.system-design .hero {
  background:
    linear-gradient(rgba(38, 113, 157, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 113, 157, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 76% 35%, rgba(29, 159, 230, 0.19), transparent 30%),
    #031426;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.system-design .hero::before {
  display: none;
}

.system-design .hero-inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(34px, 4vw, 54px);
}

.systems-hero-media {
  position: relative;
  aspect-ratio: 1.35;
  margin: 0;
  border: 1px solid #2b789f;
  border-radius: 3px;
  overflow: hidden;
  background: #04172a;
  box-shadow: 18px 18px 0 rgba(31, 114, 158, 0.1), 0 32px 90px rgba(0, 0, 0, 0.34);
}

.systems-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 11, 20, 0.76));
  content: "";
  pointer-events: none;
}

.systems-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.9) contrast(1.06);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.systems-hero-media:hover img {
  transform: scale(1.025);
}

.systems-hero-media figcaption {
  position: absolute;
  right: 17px;
  bottom: 16px;
  left: 17px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.systems-hero-media figcaption small {
  color: #b7c9dd;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.system-design .eyebrow,
.system-design .section-kicker,
.system-design .trust-strip-inner {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.system-design .button,
.system-design .nav-action,
.system-design .brand-mark,
.system-design .service-panel,
.system-design .service-symbol,
.system-design .product-preview,
.system-design .product-browser,
.system-design .email-panel,
.system-design .email-action {
  border-radius: 3px;
}

.system-design .services-section,
.system-design .process-section {
  background-color: #061a2c;
}

.system-design .service-panel {
  background:
    linear-gradient(rgba(73, 144, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 144, 184, 0.07) 1px, transparent 1px),
    #081f33;
  background-size: 24px 24px;
}

.system-design .industry-row:hover {
  background: rgba(21, 73, 103, 0.34);
}

.system-design .process-track::before {
  background: #2c88b8;
}

.system-design .process-track li > span {
  border-radius: 2px;
  background: #052139;
  box-shadow: 0 0 0 7px #061a2c;
}

.system-design .contact-section {
  background:
    linear-gradient(rgba(81, 175, 225, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 175, 225, 0.08) 1px, transparent 1px),
    #073454;
  background-size: 34px 34px;
}

.system-design .contact-promise > span {
  border-radius: 2px;
}

@media (max-width: 900px) {
  .system-design .hero-inner {
    width: min(100% - 48px, 760px);
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .systems-hero-media {
    aspect-ratio: 1.5;
  }
}

@media (max-width: 760px) {
  .system-design .hero-inner {
    width: min(100% - 30px, 620px);
    padding-top: 118px;
  }

  .systems-hero-media {
    aspect-ratio: 1.34;
  }
}

@media (max-width: 440px) {
  .systems-hero-media {
    aspect-ratio: 1.08;
  }

  .systems-hero-media figcaption {
    display: grid;
    gap: 4px;
  }

  .systems-hero-media figcaption small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .systems-hero-media img {
    transition: none;
  }
}
