@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&family=Inter:wght@300;400&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
}

/* INTRO */
#intro {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.intro-center {
  text-align: center;
}

#intro-loading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 24px;
}

#intro-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.4rem;
  letter-spacing: 0.45em;
  margin-bottom: 18px;
}

#intro-subtitle {
  font-size: 0.9rem;
  color: #9a9a9a;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}

.hero-footer {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #bcbcbc;
}

/* CONTENT */
.content {
  max-width: 820px;
  margin: auto;
  padding: 80px 20px;
}

footer {
  text-align: center;
  padding: 60px 20px;
  font-size: 0.8rem;
  color: #777;
}
