@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
  color: #111111;
  font-family:
    "Plus Jakarta Sans", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1em;
  line-height: 1.4;
}

body {
  margin: 0;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.site-page {
  background: #050505;
  color: #ffffff;
}

.top-bar {
  align-items: center;
  display: flex;
  height: 4.5rem;
  justify-content: space-between;
  padding: 0 2rem;
}

.brand-link {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-button,
.hero-button {
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
}

.nav-button:hover,
.hero-button:hover {
  background: transparent;
  color: #ffffff;
}

.hero-home,
.home-dashboard {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 4.5rem);
  padding: 2rem;
}

.hero-copy,
.home-card {
  max-width: 46rem;
}

.hero-kicker {
  color: #b7b7b7;
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.hero-copy h1,
.home-card h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
  line-height: 1;
  margin: 0 0 1rem;
}

.hero-copy p,
.home-card p {
  color: #d8d8d8;
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
}

.unauthorized-page {
  background: #313338;
  color: #f2f3f5;
  min-height: 100vh;
}

.unauthorized-home {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.unauthorized-home h1 {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  margin: 0;
}

.unauthorized-line {
  background: #1e1f22;
  height: 2px;
  margin: 1.25rem 0 1.5rem;
  width: min(100%, 24rem);
}

.unauthorized-login {
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #1e1f22;
  font-weight: 800;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
}

.unauthorized-login:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 640px) {
  .top-bar {
    padding: 0 1rem;
  }
}
