/* V4 product-spec refinement */
.hardware {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 88px;
}
.hardware .section-copy h2 span { color: #6e6e73; }
.hardware-grid {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
}
.hardware-card {
  position: relative;
  min-height: 194px;
  overflow: hidden;
  padding: 20px 16px;
  border-radius: 26px;
  background: #f5f5f7;
  box-shadow: inset 0 1px rgba(255,255,255,.75);
}
.hardware-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.96),rgba(255,255,255,0) 68%);
  content: "";
}
.hardware-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: #6e6e73;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .02em;
}
.hardware-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 35px;
  color: #1d1d1f;
  font-size: clamp(38px, 11vw, 58px);
  font-weight: 760;
  line-height: .84;
  letter-spacing: -.07em;
}
.hardware-card strong small {
  margin-left: 3px;
  font-size: .32em;
  letter-spacing: -.02em;
}
.hardware-card p {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 18px;
  left: 16px;
  color: #6e6e73;
  font-size: 11px;
  line-height: 1.35;
}
.hardware-card.display { background: #eef1f7; }
.hardware-card.display::before {
  position: absolute;
  top: 20px;
  right: 17px;
  width: 42px;
  height: 56px;
  border: 3px solid #1d1d1f;
  border-radius: 13px;
  box-shadow: inset 0 0 0 5px #d8def0;
  content: "";
  transform: rotate(12deg);
}
.hardware-card.brightness { background: #f7f1e9; }
.hardware-card.brightness::before {
  position: absolute;
  top: 19px;
  right: 21px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #ffb051;
  box-shadow: 0 0 0 10px rgba(255,176,81,.17),0 0 30px rgba(255,176,81,.4);
  content: "";
}
.hardware-card.protect { background: #eaf2ee; }
.hardware-card.protect strong { font-size: clamp(27px, 7.4vw, 39px); letter-spacing: -.05em; }
.hardware-card.protect::before {
  position: absolute;
  top: 20px;
  right: 19px;
  width: 38px;
  height: 46px;
  border-radius: 20px 20px 17px 17px;
  background: #39735a;
  clip-path: polygon(50% 0,100% 16%,92% 68%,50% 100%,8% 68%,0 16%);
  content: "";
}
.hardware-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 600;
}
.hardware-foot i { width: 3px; height: 3px; border-radius: 50%; background: #a1a1a6; }
.hardware .enter { will-change: transform, opacity; }

@media (min-width: 760px) {
  .hardware-grid { grid-template-columns: repeat(4, 1fr); }
  .hardware-card { min-height: 220px; }
  .hardware-card strong { font-size: 50px; }
  .hardware-card.protect strong { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .hardware .enter { transform: none !important; }
}