:root {
  color: #0a234e;
  background: #f8fafa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { min-width: 320px; margin: 0; background: #f8fafa; }
a { color: inherit; }
.site-header {
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid #d9e1e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.master-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.master-brand img { width: 48px; height: 48px; object-fit: contain; }
.master-brand b, .master-brand small { display: block; }
.master-brand b { font: 700 24px Georgia, "Times New Roman", serif; }
.master-brand small { color: #526278; font-size: 11px; text-transform: uppercase; }
nav { display: flex; gap: 18px; }
nav a, footer a { font-size: 13px; font-weight: 700; text-decoration: none; }
main { overflow: hidden; }
.intro { max-width: 880px; padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 96px) 56px; }
.eyebrow { color: #078b91; margin: 0 0 14px; font-size: 12px; font-weight: 800; }
h1, h2 { letter-spacing: 0; font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 760px; margin: 0; font-size: clamp(43px, 6vw, 76px); line-height: 1.02; }
.lead { max-width: 720px; color: #526278; margin: 25px 0 0; font-size: 18px; line-height: 1.6; }
.product-grid { border-top: 1px solid #d9e1e4; display: grid; grid-template-columns: repeat(7, minmax(180px, 1fr)); overflow-x: auto; }
.product {
  min-height: 390px;
  padding: 34px 24px 26px;
  border-right: 1px solid #d9e1e4;
  display: grid;
  grid-template-rows: 112px auto auto 1fr;
  align-content: start;
  text-decoration: none;
  transition: background .16s ease, transform .16s ease;
}
.product:last-child { border-right: 0; }
.product:hover { background: #fff; transform: translateY(-4px); }
.product:focus-visible, nav a:focus-visible, footer a:focus-visible { outline: 3px solid #08275d; outline-offset: -3px; }
.product img { width: 110px; height: 110px; object-fit: contain; }
.product b, .product small { display: block; }
.product b { font: 700 25px Georgia, "Times New Roman", serif; }
.product small { margin-top: 4px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.product p { color: #526278; margin: 22px 0 0; font-size: 14px; line-height: 1.55; }
.product em { align-self: end; margin-top: 28px; font-size: 11px; font-style: normal; font-weight: 700; line-height: 1.45; }
.home b, .home small, .home em { color: #078b91; }
.talks b, .talks small, .talks em { color: #0767b5; }
.connects b, .connects small, .connects em { color: #ef3f43; }
.informs b, .informs small, .informs em { color: #b87800; }
.cares b, .cares small, .cares em { color: #318c32; }
.creates b, .creates small, .creates em { color: #e80958; }
.invests b, .invests small, .invests em { color: #08275d; }
.boundary { padding: clamp(54px, 8vw, 100px) clamp(20px, 6vw, 96px); border-top: 1px solid #d9e1e4; display: grid; grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr); gap: 64px; }
.boundary h2 { max-width: 520px; margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.08; }
.boundary > p { max-width: 700px; color: #526278; margin: 30px 0 0; font-size: 17px; line-height: 1.7; }
footer { min-height: 76px; padding: 18px clamp(20px, 6vw, 96px); border-top: 1px solid #d9e1e4; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 13px; }
@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  nav { flex-direction: column; gap: 7px; text-align: right; }
  .product-grid { grid-template-columns: 1fr; overflow: visible; }
  .product { min-height: 0; grid-template-columns: 94px 1fr; grid-template-rows: auto auto auto; gap: 0 16px; border-right: 0; border-bottom: 1px solid #d9e1e4; }
  .product img { width: 90px; height: 90px; grid-row: 1 / 4; }
  .product p { margin-top: 12px; }
  .product em { margin-top: 14px; }
  .boundary { grid-template-columns: 1fr; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { .product { transition: none; } }
