/* Minimal, calm typography */
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5a5a5a;
  --rule: rgba(0, 0, 0, 0.08);
  --maxw: 720px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a:hover {
  opacity: 0.85;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: block;
}

.brand__name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.topbar__iconlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  text-decoration: none;
}

.topbar__iconlink svg {
  display: block;
  fill: currentColor;
  opacity: 0.65;
}

.page {
  padding: 0 22px 56px;
}

.content {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 40px;
}

@media (max-width: 720px) {
  .content {
    padding-top: 44px;
  }
}

.section-title {
  margin-top: 28px;
  margin-bottom: 6px;
  font-weight: 600;
}

.offerings {
  margin: 18px 0 18px;
  padding-left: 20px;
}

.offerings li {
  margin: 10px 0;
}

.offerings strong {
  font-weight: 700;
}

.contact {
  margin-top: 18px;
  margin-bottom: 0;
}

.contact__label {
  font-weight: 600;
}

.legal {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.legal__avatarwrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.legal__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  opacity: 0.9;
}