:root {
  --bg: #f8f3f5;
  --text: #2b2438;
  --text-dim: #6b6178;
  --text-dimmer: #a099ac;
  --border: #e8e0e6;
  --purple: #6c5a99;
  --blue: #7f9be0;
  --pink: #e8a0c2;
  --gradient: linear-gradient(120deg, var(--purple), var(--blue) 55%, var(--pink));
  --max-width: 720px;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}

body::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
}

body::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -160px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
}

a {
  color: var(--purple);
  text-decoration-color: rgba(108, 90, 153, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:hover {
  color: #c2447e;
  text-decoration-color: currentColor;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 40px 0 0;
  background: var(--bg);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 120px;
  height: 120px;
  display: block;
  object-fit: contain;
  margin-left: -18px;
}

.brand {
  font-family: var(--font-mono);
  font-size: 19px;
  color: var(--text-dim);
  text-decoration: none;
}

.brand strong {
  color: var(--text);
}

main {
  padding: 28px 0 80px;
}

section {
  margin-bottom: 52px;
}

section:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: clamp(23px, 3.4vw, 28px);
  line-height: 1.45;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

h2 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dimmer);
  margin: 0 0 18px;
  font-weight: 700;
}

p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

.lead p {
  font-size: 15.5px;
  color: var(--text);
}

.lead strong {
  color: var(--purple);
  font-weight: 700;
}

.bg-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 15.5px;
}

.bg-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.bg-list li:nth-child(3n+2)::before {
  color: var(--purple);
}

.bg-list li:nth-child(3n)::before {
  color: var(--pink);
}

.bg-list li:last-child {
  margin-bottom: 0;
}

.bg-list strong {
  color: var(--text);
  font-weight: 700;
}

#contact p {
  font-size: 14.5px;
}

.contact-line {
  font-size: 16px;
  color: var(--text);
}

.contact-line a {
  font-weight: 700;
}

.at-symbol {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-legal,
.footer-copy {
  font-size: 12.5px;
  color: var(--text-dimmer);
}
