/* SmartScale production brand and field-asset layer */
.brand-asset {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 35px;
  overflow: hidden;
}

.brand-asset img {
  position: absolute;
  top: 0;
  left: -7px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: top;
}

.camera-scene {
  background: #17231f;
  filter: none;
}

.camera-scene > img,
.passport-photo > img,
.replay-scene > img,
.card-art.case > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-scene > img {
  position: absolute;
  inset: 0;
  object-position: center 55%;
  filter: saturate(.72) contrast(1.08) brightness(.76);
}

.camera-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 16, 12, .18), transparent 45%),
    linear-gradient(0deg, rgba(5, 16, 12, .45), transparent 50%);
  pointer-events: none;
}

.camera-scene::after,
.camera-scene .scan-line,
.camera-scene .target {
  z-index: 2;
}

.field-proof {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  min-height: 680px;
  background: #e8eee6;
  color: var(--dark-text);
}

.field-proof-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.field-proof-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 15, 11, .64));
  pointer-events: none;
}

.field-proof-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.03);
  transition: transform 1.1s ease;
}

.field-proof:hover .field-proof-image > img {
  transform: scale(1.025);
}

.field-proof-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: rgba(6, 17, 14, .82);
  color: white;
  backdrop-filter: blur(8px);
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.field-proof-corner {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  color: white;
  text-align: right;
  font: 700 25px/1 var(--mono);
  letter-spacing: -.06em;
}

.field-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(35px, 5vw, 90px);
}

.field-proof-copy .kicker {
  color: #337557;
}

.field-proof-copy h2 {
  margin: 20px 0 28px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 600;
}

.field-proof-copy > p {
  margin: 0;
  color: #5f6f67;
  font-size: 15px;
  line-height: 1.8;
}

.field-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: #c9d4ca;
  border: 1px solid #c9d4ca;
}

.field-stats > div {
  display: flex;
  flex-direction: column;
  padding: 17px 13px;
  background: #eef3ec;
}

.field-stats strong {
  color: #245d45;
  font: 17px var(--mono);
}

.field-stats span {
  margin-top: 7px;
  color: #647169;
  font-size: 8px;
}

.passport-photo {
  display: block;
}

.passport-photo > img {
  position: absolute;
  inset: 0;
  filter: saturate(.7) contrast(1.08) brightness(.72);
}

.passport-photo::after {
  z-index: 1;
}

.passport-photo span {
  z-index: 2;
}

.replay-scene > img {
  position: absolute;
  inset: 0;
  object-position: center 55%;
  filter: saturate(.63) contrast(1.12) brightness(.58);
}

.replay-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 17, 14, .22), transparent 55%);
}

.replay-scene::after,
.replay-scene .bucket-material {
  z-index: 2;
}

.card-art.case {
  position: relative;
}

.card-art.case > img {
  position: absolute;
  inset: 0;
  filter: saturate(.72) contrast(1.06) brightness(.72);
}

.card-art.case::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 17, 15, .1), rgba(7, 17, 15, .65));
}

.card-art.case span {
  position: relative;
  z-index: 2;
}

.edge-device {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
  padding: 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
}

.edge-device img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  background: #18868a;
}

.edge-device > div {
  display: flex;
  flex-direction: column;
}

.edge-device span {
  color: var(--acid);
  font: 7px var(--mono);
  letter-spacing: .1em;
}

.edge-device b {
  margin: 8px 0;
  font-size: 12px;
}

.edge-device small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.architecture-map {
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr) auto minmax(0, 1fr);
}

.architecture-map > div {
  min-width: 0;
}

@media (max-width: 1050px) {
  .field-proof {
    grid-template-columns: 1fr;
  }

  .field-proof-image {
    min-height: 560px;
  }

  .field-proof-copy {
    padding: 75px clamp(30px, 8vw, 80px);
  }
}

@media (max-width: 720px) {
  .brand-asset {
    flex-basis: 34px;
    width: 34px;
    height: 30px;
  }

  .brand-asset img {
    left: -6px;
    width: 47px;
    height: 47px;
  }

  .field-proof-image {
    min-height: 390px;
  }

  .field-proof-copy {
    padding: 68px 22px;
  }

  .field-proof-copy h2 {
    font-size: 40px;
  }

  .field-stats {
    grid-template-columns: 1fr;
  }

  .edge-device {
    grid-template-columns: 110px 1fr;
  }

  .edge-device img {
    width: 110px;
    height: 105px;
  }
}
