:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #111111;
  background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
p {
  margin: 0;
}

.site-shell {
  width: min(100% - 32px, 960px);
  margin: 0 auto;
  padding: 64px 0 86px;
}

.site-shell > * + * {
  margin-top: 16px;
}

.site-kicker {
  color: #344256;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-shell h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.92;
}

.site-intro {
  max-width: 680px;
  color: #4f5e72;
  font-size: clamp(18px, 2.4vw, 24px);
}

.site-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
  margin-top: 38px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #f8fafc;
}

.site-card h2 {
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.site-card p:not(.site-kicker) {
  max-width: 560px;
  margin-top: 14px;
  color: #4f5e72;
}

.site-actions {
  display: grid;
  gap: 10px;
}

.site-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.site-action--primary {
  background: #111111;
  color: #ffffff;
}

@media (max-width: 760px) {
  .site-card {
    grid-template-columns: 1fr;
  }
}
