/* HERO */
.hero {
  width: calc(100% - 30px);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.brand {
  padding: 44px 0 25px;
}

.brand-name {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 18px rgba(0, 127, 255, 0.3);
}

.brand-tagline {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.4px;
}

/* LOGIN + DAFTAR BUTTONS */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 5px auto 16px;
}

.hero-button {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-login {
  color: #fff;
  background: linear-gradient(145deg, #071b3d, #0a2b60);
  border: 1px solid rgba(69, 176, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-login:hover {
  border-color: var(--blue-400);
  box-shadow: 0 10px 25px rgba(0, 101, 220, 0.2);
}

.hero-daftar {
  color: #fff;
  background: linear-gradient(135deg, #075bc7 0%, #0878e8 48%, #1597ff 100%);
  border: 1px solid rgba(110, 205, 255, 0.65);
  box-shadow: 0 10px 30px rgba(0, 115, 255, 0.28);
}

.hero-daftar:hover {
  box-shadow: 0 12px 35px rgba(0, 140, 255, 0.4);
}