@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --green: #22c55e;
  --orange: #f97316;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Source Code Pro', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Aurora blobs ─────────────────────────────────────── */

.aurora {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
}

.aurora__blob--green {
  width: 600px;
  height: 600px;
  background: var(--green);
  opacity: 0.45;
  top: -10%;
  right: -5%;
  animation: drift-green 40s ease-in-out infinite alternate;
}

.aurora__blob--orange {
  width: 500px;
  height: 500px;
  background: var(--orange);
  opacity: 0.35;
  top: 20%;
  right: 10%;
  animation: drift-orange 50s ease-in-out infinite alternate;
}

.aurora__blob--green-secondary {
  width: 400px;
  height: 400px;
  background: var(--green);
  opacity: 0.2;
  bottom: -5%;
  left: -5%;
  animation: drift-secondary 55s ease-in-out infinite alternate;
}

@keyframes drift-green {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -30px) scale(0.95); }
  100% { transform: translate(-50px, 40px) scale(1.05); }
}

@keyframes drift-orange {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -50px) scale(1.08); }
  66% { transform: translate(-40px, 70px) scale(0.92); }
  100% { transform: translate(30px, -40px) scale(1.03); }
}

@keyframes drift-secondary {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* ── Layout ───────────────────────────────────────────── */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero__wordmark {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  opacity: 0.7;
}

.hero__title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: -0.03em;
  text-align: center;
}

/* ── Footer ───────────────────────────────────────────── */

.footer {
  padding: 2rem;
  text-align: center;
}

.footer__link {
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 640px) {
  .footer {
    padding: 1.5rem;
  }

  .aurora__blob--green {
    width: 350px;
    height: 350px;
  }

  .aurora__blob--orange {
    width: 300px;
    height: 300px;
  }

  .aurora__blob--green-secondary {
    width: 250px;
    height: 250px;
  }
}
