* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #ffffff;
  color: #000000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 2px solid #000000;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #000000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover:not(:disabled) {
  background-color: #000000;
  color: #ffffff;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hero {
  max-width: 680px;
  margin: 80px auto 0;
  padding: 0 24px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid #3b82f6;
  background-color: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}