:root {
  --black: #000;
  --white: #fff;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--black);
  font-family: "Sans Bornes", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

a.email {
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
}

a.email:hover {
  text-decoration: underline;
}

h2 {
  margin: 0;
  font-size: 33px;
  font-weight: 200;
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: 69px;
  font-weight: 900;
  line-height: 1.05;
  transform: translateZ(0);
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #fff 100%);
  background-size: 220% 220%;
  animation: gradientDrift 16s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bg__svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0);
  opacity: 0.22;
}

@media (prefers-reduced-motion: reduce) {
  .bg { animation: none; }
  .bg__svg { display: none; }
}

