:root {
  --ground: #07060b;
  --surface: #121019;
  --line: #24202f;
  --text: #f2efe9;
  --muted: #9b95a8;
  --accent: #a78bfa;
  --accent-strong: #8b5cf6;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ground);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
}

main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-block: 72px 48px;
  flex: 1;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 36px;
  height: 36px;
}

h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  text-wrap: balance;
}

h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 40px 0 8px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 62ch;
}

.lede {
  font-size: 1.125rem;
  color: var(--text);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent-strong);
}

.button.primary {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.contact {
  display: block;
  margin: 8px 0 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font-size: 1.125rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

ol {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--muted);
}

ol li {
  margin-bottom: 6px;
}

strong {
  color: var(--text);
  font-weight: 600;
}

footer {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-block: 24px 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.875rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
}
