:root {
  color-scheme: light;
  --text: #182126;
  --muted: #536267;
  --line: #dce7e3;
  --accent: #2f776d;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
}

body {
  background: #ffffff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1040px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(48px, 10vh, 112px) clamp(20px, 5vw, 56px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(44px, 7vh, 76px);
}

.brand-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(520px, 82vw);
  height: auto;
}

.payoff {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
}

.products {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.products h1 {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-link {
  width: min(100%, 430px);
  min-height: 124px;
  padding: 24px 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(34, 58, 54, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  border-color: rgba(47, 119, 109, 0.55);
  box-shadow: 0 20px 52px rgba(47, 119, 109, 0.16);
  transform: translateY(-1px);
  outline: none;
}

.product-link img {
  display: block;
  width: min(100%, 330px);
  height: auto;
}

@media (max-width: 520px) {
  .page-shell {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .product-link {
    min-height: 104px;
    padding: 22px;
  }
}
