@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --text: #20212b;
  --muted: rgba(32, 33, 43, 0.6);
  --brand: #25b2be;
  --line: rgba(32, 33, 43, 0.2);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.mark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

h1 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: lowercase;
}

h2 {
  margin: 28px 0 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted);
  text-transform: lowercase;
}

p, li {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.home-lead {
  font-size: 16px;
  line-height: 1.4;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}
