:root {
  color: #172033;
  background: #f5f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

.page-shell { width: min(960px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0; }

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

.product-card { display: flex; align-items: center; gap: 22px; padding: 24px 26px; color: inherit; text-decoration: none; background: rgba(255, 255, 255, .86); border: 1px solid #e4e9f2; border-radius: 22px; box-shadow: 0 12px 35px rgba(35, 54, 96, .06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }

.product-card:hover, .product-card:focus-visible { border-color: #9eafff; box-shadow: 0 18px 42px rgba(35, 54, 96, .12); outline: none; transform: translateY(-3px); }

.product-mark { display: grid; flex: 0 0 64px; width: 64px; height: 64px; place-items: center; color: #fff; background: linear-gradient(135deg, #5d7bff, #8f68f5); border-radius: 18px; font-size: 28px; font-weight: 700; }

.product-mark-teal { background: linear-gradient(135deg, #16a394, #2a79c8); }

.product-mark-rose { background: linear-gradient(135deg, #ed7c68, #c75091); }

.product-mark-violet { background: linear-gradient(135deg, #7868e6, #b05bd1); }

.product-mark-slate { background: linear-gradient(135deg, #354765, #5286a8); }

.product-mark-orange { background: linear-gradient(135deg, #f39a4a, #e76b5b); }

.product-mark-green { background: linear-gradient(135deg, #43b982, #2e9d9a); }

.product-mark-cyan { background: linear-gradient(135deg, #28b9d1, #3579d7); }

.product-mark-red { background: linear-gradient(135deg, #ec6b70, #d44968); }

.product-copy { min-width: 0; flex: 1; }

.product-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.product-copy h2 { margin: 0; font-size: 22px; letter-spacing: -.02em; }

.industry-tag { padding: 4px 9px; color: #5573f5; background: #eef1ff; border-radius: 999px; font-size: 12px; font-weight: 650; }

.product-copy p { margin: 7px 0 0; color: #7b8497; font-size: 15px; line-height: 1.6; }

.product-arrow { color: #5573f5; font-size: 26px; transition: transform .2s ease; }

.product-card:hover .product-arrow, .product-card:focus-visible .product-arrow { transform: translate(3px, -3px); }

@media (max-width: 560px) {
  .page-shell { width: min(100% - 28px, 960px); padding: 56px 0; }
  .product-card { gap: 15px; padding: 18px; border-radius: 18px; }
  .product-list { grid-template-columns: 1fr; }
  .product-mark { flex-basis: 52px; width: 52px; height: 52px; border-radius: 14px; font-size: 23px; }
  .product-copy h2 { font-size: 19px; }
  .product-copy p { font-size: 13px; }
}
