@font-face {
  font-family: "Ubuntu Mono";
  src: url("ubuntu_mono.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #132b57;
  --bg-1: #0a0b0f;
  --text-0: #e5e7eb;
  --text-1: #cacfda;
  --accent: #ffd400; /* matches the yellow logo hue */
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Ubuntu Mono", monospace;
  color: var(--text-0);
  background: radial-gradient(800px 800px at 50% 40%, var(--bg-0) 0%, transparent 100%), var(--bg-1);
}

.site {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeIn 0.9s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.logo {
  width: min(30vw, 360px);
  height: auto;
}

h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw + 8px, 56px);
}

h2 {
  margin: 0;
  font-weight: 400;
  color: var(--text-1);
}

.social {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-0);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 18px rgba(0,0,0,0.35);
  transition: background .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  color: var(--bg-0);
  background: linear-gradient(180deg, var(--accent), #ffcf40);
}

.icon {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  
  .hero {
    animation: none;
  }
}
