:root {
  color-scheme: light;
  --paper: #f6f4ea;
  --surface: #fffdf7;
  --ink: #282d30;
  --muted: #7b7a74;
  --blue: #849fc1;
  --violet: #ab9cc2;
  --rose: #b48f8e;
  --line: rgba(36, 48, 58, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(760px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero,
.document {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.mark {
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  border-radius: 15px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(40, 45, 48, 0.08);
}

.mark::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  background: rgba(171, 156, 194, 0.24);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mark::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 13px;
  top: 33px;
  height: 18px;
  border: 4px solid transparent;
  border-top-color: var(--blue);
  border-right-color: var(--violet);
  border-radius: 50%;
  transform: rotate(-9deg);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: 0;
}

h2 {
  margin: 28px 0 8px;
  font-size: 18px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.contact {
  color: var(--ink);
  font-weight: 700;
}
